defer method

  1. @override
void defer(
  1. Future executionDeferral
)
override

Defer the action execution, if the action is not already executed or canceled. Use onDefer to delay starting your executionDeferral until the action is ready to execute.

Example: asyncEvent.defer(asyncEvent.onDefer.then((_) { return doSomeAsyncThingThatDelaysTheEvent(); });

Implementation

@override
void defer(Future<dynamic> executionDeferral) =>
    delegate.defer(executionDeferral);