setTitle method

FirebaseMpnBuilder setTitle(
  1. String? title
)

Sets the android.notification.title field.

  • title A string to be used for the android.notification.title field value, or null to clear it.

Returns this MpnBuilder object, for fluent use.

Implementation

FirebaseMpnBuilder setTitle(String? title) {
  _title = title;
  return this;
}