setTitleLocKey method

FirebaseMpnBuilder setTitleLocKey(
  1. String? titleLocKey
)

Sets the android.notification.title_loc_key field.

  • titleLocKey A string to be used for the android.notification.title_loc_key field value, or null to clear it.

Returns this MpnBuilder object, for fluent use.

Implementation

FirebaseMpnBuilder setTitleLocKey(String? titleLocKey) {
  _titleLocKey = titleLocKey;
  return this;
}