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