NotificationPreferences class abstract

Available extensions
Annotations

Constructors

NotificationPreferences({@Default(false) bool dailyReminderEnabled, @Default(9) int dailyReminderHour, @Default(0) int dailyReminderMinute, @Default(false) bool streakAlertEnabled, @Default(false) bool overdueAlertEnabled, @Default(3) int overdueThresholdDays})
const
factory
NotificationPreferences.fromJson(Map<String, dynamic> json)
factory

Properties

copyWith → $NotificationPreferencesCopyWith<NotificationPreferences>
Create a copy of NotificationPreferences with the given fields replaced by the non-null parameter values.
no setterinherited
dailyReminderEnabled bool
no setterinherited
dailyReminderHour int
no setterinherited
dailyReminderMinute int
no setterinherited
hashCode int
The hash code for this object.
no setterinherited
overdueAlertEnabled bool
no setterinherited
overdueThresholdDays int
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
streakAlertEnabled bool
no setterinherited

Methods

map<TResult extends Object?>(TResult $default(_NotificationPreferences value)) → TResult

Available on NotificationPreferences, provided by the NotificationPreferencesPatterns extension

A switch-like method, using callbacks.
mapOrNull<TResult extends Object?>(TResult? $default(_NotificationPreferences value)?) → TResult?

Available on NotificationPreferences, provided by the NotificationPreferencesPatterns extension

A variant of map that fallback to returning null.
maybeMap<TResult extends Object?>(TResult $default(_NotificationPreferences value)?, {required TResult orElse()}) → TResult

Available on NotificationPreferences, provided by the NotificationPreferencesPatterns extension

A variant of map that fallback to returning orElse.
maybeWhen<TResult extends Object?>(TResult $default(bool dailyReminderEnabled, int dailyReminderHour, int dailyReminderMinute, bool streakAlertEnabled, bool overdueAlertEnabled, int overdueThresholdDays)?, {required TResult orElse()}) → TResult

Available on NotificationPreferences, provided by the NotificationPreferencesPatterns extension

A variant of when that fallback to an orElse callback.
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() Map<String, dynamic>
Serializes this NotificationPreferences to a JSON map.
inherited
toString() String
A string representation of this object.
inherited
when<TResult extends Object?>(TResult $default(bool dailyReminderEnabled, int dailyReminderHour, int dailyReminderMinute, bool streakAlertEnabled, bool overdueAlertEnabled, int overdueThresholdDays)) → TResult

Available on NotificationPreferences, provided by the NotificationPreferencesPatterns extension

A switch-like method, using callbacks.
whenOrNull<TResult extends Object?>(TResult? $default(bool dailyReminderEnabled, int dailyReminderHour, int dailyReminderMinute, bool streakAlertEnabled, bool overdueAlertEnabled, int overdueThresholdDays)?) → TResult?

Available on NotificationPreferences, provided by the NotificationPreferencesPatterns extension

A variant of when that fallback to returning null

Operators

operator ==(Object other) bool
The equality operator.
inherited