setBodyLocArguments method

FirebaseMpnBuilder setBodyLocArguments(
  1. List<String>? bodyLocArguments
)

Sets the android.notification.body_loc_args field.

  • bodyLocArguments A list of strings to be used for the android.notification.body_loc_args field value, or null to clear it.

Returns this MpnBuilder object, for fluent use.

Implementation

FirebaseMpnBuilder setBodyLocArguments(List<String>? bodyLocArguments) {
  _bodyLocArguments = bodyLocArguments?.toList();
  return this;
}