complete method

void complete(
  1. V value
)

Completes the side effect with a value.

Should be called by the UI once the effect is handled.

Implementation

void complete(V value) => _completer.complete(value);