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 &&
        loopAudio == other.loopAudio &&
        vibrate == other.vibrate &&
        volume == other.volume &&
        fadeDuration == other.fadeDuration &&
        notificationTitle == other.notificationTitle &&
        notificationBody == other.notificationBody &&
        enableNotificationOnKill == other.enableNotificationOnKill &&
        androidFullScreenIntent == other.androidFullScreenIntent;