RestartableTimer class
A non-periodic timer that can be restarted any number of times.
Once restarted (via reset), the timer counts down from its original duration again.
- Implemented types
Constructors
- RestartableTimer(Duration _duration, ZoneCallback _callback)
- Creates a new timer. [...]
Properties
- isActive → bool
-
Returns whether the timer is still active. [...]
read-only, override
- tick → int
-
The number of durations preceding the most recent timer event. [...]
read-only, override
- hashCode → int
-
The hash code for this object. [...]
read-only, inherited
- runtimeType → Type
-
A representation of the runtime type of the object.
read-only, inherited
Methods
-
cancel(
) → void -
Cancels the timer.
override
-
reset(
) → void - Restarts the timer so that it counts down from its original duration again. [...]
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a non-existent method or property is accessed. [...]
inherited
-
toString(
) → String -
Returns a string representation of this object.
inherited
Operators
-
operator ==(
dynamic other) → bool -
The equality operator. [...]
inherited