setTitle method
Sets the android.notification.title field.
- titleA string to be used for the- android.notification.titlefield value, or null to clear it.
Returns this MpnBuilder object, for fluent use.
Implementation
FirebaseMpnBuilder setTitle(String? title) {
  _title = title;
  return this;
}