setBodyLocKey method
Sets the android.notification.body_loc_key field.
- bodyLocKeyA string to be used for the- android.notification.body_loc_keyfield value, or null to clear it.
Returns this MpnBuilder object, for fluent use.
Implementation
FirebaseMpnBuilder setBodyLocKey(String? bodyLocKey) {
  _bodyLocKey = bodyLocKey;
  return this;
}