NotificationSettings constructor

NotificationSettings({
  1. required bool enabled,
  2. Map<String, dynamic> configuration = const {},
  3. bool sound = true,
  4. bool vibrate = true,
})

Implementation

NotificationSettings({
  required this.enabled,
  this.configuration = const {},
  this.sound = true,
  this.vibrate = true,
});