setBody method
- String? val
Sets the aps.alert.body
field.
val
: A string to be used for theaps.alert.body
field value, or nil to clear it.
Implementation
ApnsMpnBuilder setBody(String? val) {
_body = val;
return this;
}
Sets the aps.alert.body
field.
val
: A string to be used for the aps.alert.body
field value, or nil to clear it.ApnsMpnBuilder setBody(String? val) {
_body = val;
return this;
}