setSubtitle method

ApnsMpnBuilder setSubtitle(
  1. String? val
)

Sets the aps.alert.subtitle field.

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

Implementation

ApnsMpnBuilder setSubtitle(String? val) {
  _subtitle = val;
  return this;
}