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