AndroidSettings constructor

AndroidSettings({
  1. FirebaseOptions? firebaseOptions,
  2. String? notificationIcon,
  3. bool? multipleNotifications,
  4. String? notificationAccentColor,
})

Default constructor with all params.

Implementation

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