setLaunchImage method

ApnsMpnBuilder setLaunchImage(
  1. String? val
)

Sets the aps.alert.launch-image field.

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

Implementation

ApnsMpnBuilder setLaunchImage(String? val) {
  _launchImage = val;
  return this;
}