complete method

void complete([
  1. dynamic value
])

Called when the corresponding Route associated with this route match is completed.

Implementation

void complete([dynamic value]) {
  completer.complete(value);
}