ApnsConfig constructor

ApnsConfig({
  1. Map<String, String>? headers,
  2. ApnsPayload? payload,
  3. ApnsFcmOptions? fcmOptions,
})

Represents the APNs-specific options that can be included in an Message. Refer to Apple documentation for various headers and payload fields supported by APNs.

Implementation

ApnsConfig({
  this.headers,
  this.payload,
  this.fcmOptions,
});