setContentAvailable method
- String? val
Sets the aps.content-available
field with a string value.
val
: A string to be used for theaps.content-available
field value, or nil to clear it.
Implementation
ApnsMpnBuilder setContentAvailable(String? val) {
_contentAvailable = val;
return this;
}