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