operator == method

  1. @override
bool operator ==(
  1. Object other
)
override

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 &&
        notificationSettings == other.notificationSettings &&
        loopAudio == other.loopAudio &&
        vibrate == other.vibrate &&
        volume == other.volume &&
        fadeDuration == other.fadeDuration &&
        warningNotificationOnKill == other.warningNotificationOnKill &&
        androidFullScreenIntent == other.androidFullScreenIntent;