onDone method

  1. @protected
  2. @mustCallSuper
void onDone()

Callback when the async operation is done.

Implementation

@protected
@mustCallSuper
void onDone() {
  _callbacks?.onDone?.call();
  observer?.onDone(this);
}