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