setPushSound method Null safety
- String sound
Sets push sound
.
Implementation
Future<void> setPushSound(String sound) async {
if (sound.isEmpty) throw InvalidParameterError();
return _int.api.send(UserPushSoundSetRequest(sound));
}
Sets push sound
.
Future<void> setPushSound(String sound) async {
if (sound.isEmpty) throw InvalidParameterError();
return _int.api.send(UserPushSoundSetRequest(sound));
}