setSound method

FirebaseMpnBuilder setSound(
  1. String? sound
)

Sets the android.notification.sound field.

  • sound A string to be used for the android.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;
}