setAlert method

ApnsMpnBuilder setAlert(
  1. String? val
)

Sets the aps.alert field.

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

Implementation

ApnsMpnBuilder setAlert(String? val) {
  _alert = val;
  return this;
}