AndroidConfig constructor

AndroidConfig({
  1. String? collapseKey,
  2. AndroidConfigPriority? priority,
  3. String? ttl,
  4. String? restrictedPackageName,
  5. Map<String, String>? data,
  6. AndroidNotification? notification,
  7. AndroidFcmOptions? fcmOptions,
})

Represents the Android-specific options that can be included in an Message.

Implementation

AndroidConfig({
  this.collapseKey,
  this.priority,
  this.ttl,
  this.restrictedPackageName,
  this.data,
  this.notification,
  this.fcmOptions,
});