setMutableContent method

ApnsMpnBuilder setMutableContent(
  1. String? val
)

Sets the aps.mutable-content field with a string value.

  • val: A string to be used for the aps.mutable-content field value, or nil to clear it.

Implementation

ApnsMpnBuilder setMutableContent(String? val) {
  _mutableContent = val;
  return this;
}