setTitleLocArguments method
Sets the android.notification.title_loc_args field.
titleLocArgumentsA list of strings to be used for theandroid.notification.title_loc_argsfield value, or null to clear it.
Returns this MpnBuilder object, for fluent use.
Implementation
FirebaseMpnBuilder setTitleLocArguments(List<String>? titleLocArguments) {
_titleLocArguments = titleLocArguments?.toList();
return this;
}