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