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