setColor method

FirebaseMpnBuilder setColor(
  1. String? color
)

Sets the android.notification.color field.

  • color A string to be used for the android.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;
}