AlarmSettings constructor
const
AlarmSettings({
- required int id,
- required DateTime dateTime,
- required String assetAudioPath,
- required VolumeSettings volumeSettings,
- required NotificationSettings notificationSettings,
- bool loopAudio = true,
- bool vibrate = true,
- bool warningNotificationOnKill = true,
- bool androidFullScreenIntent = true,
- bool allowAlarmOverlap = false,
- bool iOSBackgroundAudio = true,
Constructs an instance of AlarmSettings
.
Implementation
const AlarmSettings({
required this.id,
required this.dateTime,
required this.assetAudioPath,
required this.volumeSettings,
required this.notificationSettings,
this.loopAudio = true,
this.vibrate = true,
this.warningNotificationOnKill = true,
this.androidFullScreenIntent = true,
this.allowAlarmOverlap = false,
this.iOSBackgroundAudio = true,
});