RepeatInterval enum Null safety
The available intervals for periodically showing notifications.
Constructors
- RepeatInterval()
-
const
Values
- everyMinute → const RepeatInterval
-
An interval for every minute.
const RepeatInterval(0)
- hourly → const RepeatInterval
-
Hourly interval.
const RepeatInterval(1)
- daily → const RepeatInterval
-
Daily interval.
const RepeatInterval(2)
- weekly → const RepeatInterval
-
Weekly interval.
const RepeatInterval(3)
Properties
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a non-existent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited
Constants
-
values
→ const List<
RepeatInterval> -
A constant List of the values in this enum, in order of their declaration.
[everyMinute, hourly, daily, weekly]