setTitleLocArguments method
Sets the aps.alert.title-loc-args field.
val: An array of strings to be used for theaps.alert.title-loc-argsfield value, or nil to clear it.
Implementation
ApnsMpnBuilder setTitleLocArguments(List<String>? val) {
  _titleLocArguments = val?.toList();
  return this;
}