GetMicrotask class
A utility class for executing microtasks sequentially.
Microtasks added using exec will be executed sequentially in the order they were added. Each microtask is represented by a Function callback provided to exec. Microtasks are executed asynchronously using scheduleMicrotask.
Constructors
Properties
Methods
-
exec(
Function callback) → void -
Executes the provided
callback
as a microtask. -
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