setTitle method

ApnsMpnBuilder setTitle(
  1. String? val
)

Sets the aps.alert.title field.

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

Implementation

ApnsMpnBuilder setTitle(String? val) {
  _title = val;
  return this;
}