setTitle method
- String? title
Sets the android.notification.title
field.
title
A string to be used for theandroid.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;
}