setBodyLocKey method

ApnsMpnBuilder setBodyLocKey(
  1. String? val
)

Sets the aps.alert.loc-key field.

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

Implementation

ApnsMpnBuilder setBodyLocKey(String? val) {
  _bodyLocKey = val;
  return this;
}