complete method
void
complete(
- 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);
Completes the side effect with a value.
Should be called by the UI once the effect is handled.
void complete(V value) => _completer.complete(value);