setSound method
- String? sound
Sets the android.notification.sound
field.
sound
A string to be used for theandroid.notification.sound
field value, or null to clear it.
Returns this MpnBuilder object, for fluent use.
Implementation
FirebaseMpnBuilder setSound(String? sound) {
_sound = sound;
return this;
}