WebpushConfig constructor

WebpushConfig({
  1. Map<String, String>? headers,
  2. Map<String, String>? data,
  3. WebpushNotification? notification,
  4. WebpushFcmOptions? fcmOptions,
})

Represents the WebPush protocol options that can be included in a Message.

Implementation

WebpushConfig({
  this.headers,
  this.data,
  this.notification,
  this.fcmOptions,
});