operator == method
Compares two AlarmSettings.
Implementation
@override
bool operator ==(Object other) =>
identical(this, other) ||
other is AlarmSettings &&
runtimeType == other.runtimeType &&
id == other.id &&
dateTime == other.dateTime &&
assetAudioPath == other.assetAudioPath &&
loopAudio == other.loopAudio &&
vibrate == other.vibrate &&
volumeMax == other.volumeMax &&
fadeDuration == other.fadeDuration &&
notificationTitle == other.notificationTitle &&
notificationBody == other.notificationBody &&
enableNotificationOnKill == other.enableNotificationOnKill &&
stopOnNotificationOpen == other.stopOnNotificationOpen &&
androidFullScreenIntent == other.androidFullScreenIntent;