completeWith method

void completeWith(
  1. T value
)

Implementation

void completeWith(T value) {
  _completer.complete(value);
  parent.popRoute(this);
}