setTag method

FirebaseMpnBuilder setTag(
  1. String? tag
)

Sets the android.notification.tag field.

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