last method
Waits for all functions in the queue to complete, and return the result of the last function in the queue.
Implementation
FutureOr<dynamic> last() {
return add<dynamic>((e) => e);
}
Waits for all functions in the queue to complete, and return the result of the last function in the queue.
FutureOr<dynamic> last() {
return add<dynamic>((e) => e);
}