DelayedUtils class
A delay execute util
- Available extensions
Constructors
Properties
- hashCode → int
-
The hash code for this object.
no setterinherited
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited
Static Methods
-
delay0(
VoidCallback callback) → Future< void> - zero delay callback
-
delayAny(
VoidCallback callback, {Duration? duration}) → Future< void> -
any delay duration callback, if
durationis null or else zero delay to running -
delayReturn<
R> (Callable< R> callable, {Duration? duration}) → Future<R> -
any delay duration callback and can
return
Rtype value