last method

FutureOr last()

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);
}