setBody method

ApnsMpnBuilder setBody(
  1. String? val
)

Sets the aps.alert.body field.

  • val: A string to be used for the aps.alert.body field value, or nil to clear it.

Implementation

ApnsMpnBuilder setBody(String? val) {
  _body = val;
  return this;
}