setPushSound static method

Future<void> setPushSound(
  1. String sound
)

Sets the push notification sound file path for the current User. This setting will be delivered on push notification payload.

Implementation

static Future<void> setPushSound(String sound) async {
  sbLog.i(StackTrace.current, 'sound: $sound');
  return await _instance._chat.setPushSound(sound);
}