AndroidSettings constructor

AndroidSettings({
  1. FirebaseOptions? firebaseOptions,
  2. String? notificationIcon,
  3. String? notificationChannelId,
  4. String? notificationChannelName,
  5. String? notificationSound,
  6. bool? multipleNotifications,
  7. String? notificationAccentColor,
})

Default constructor with all params.

Implementation

AndroidSettings({
  this.firebaseOptions,
  this.notificationIcon,
  this.notificationChannelId,
  this.notificationChannelName,
  this.notificationSound,
  this.multipleNotifications,
  this.notificationAccentColor,
});