setSound method

ApnsMpnBuilder setSound(
  1. String? val
)

Sets the aps.sound field.

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

Implementation

ApnsMpnBuilder setSound(String? val) {
  _sound = val;
  return this;
}