setTitleLocArguments method

FirebaseMpnBuilder setTitleLocArguments(
  1. List<String>? titleLocArguments
)

Sets the android.notification.title_loc_args field.

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

Returns this MpnBuilder object, for fluent use.

Implementation

FirebaseMpnBuilder setTitleLocArguments(List<String>? titleLocArguments) {
  _titleLocArguments = titleLocArguments?.toList();
  return this;
}