AlarmSettings constructor
const
AlarmSettings({
- required int id,
- required DateTime dateTime,
- required String assetAudioPath,
- required NotificationSettings notificationSettings,
- bool loopAudio = true,
- bool vibrate = true,
- double? volume,
- bool volumeEnforced = false,
- double fadeDuration = 0.0,
- bool warningNotificationOnKill = true,
- bool androidFullScreenIntent = true,
Constructs an instance of AlarmSettings
.
Implementation
const AlarmSettings({
required this.id,
required this.dateTime,
required this.assetAudioPath,
required this.notificationSettings,
this.loopAudio = true,
this.vibrate = true,
this.volume,
this.volumeEnforced = false,
this.fadeDuration = 0.0,
this.warningNotificationOnKill = true,
this.androidFullScreenIntent = true,
});