setBodyLocKey method

FirebaseMpnBuilder setBodyLocKey(
  1. String? bodyLocKey
)

Sets the android.notification.body_loc_key field.

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

Returns this MpnBuilder object, for fluent use.

Implementation

FirebaseMpnBuilder setBodyLocKey(String? bodyLocKey) {
  _bodyLocKey = bodyLocKey;
  return this;
}