reset method

Future<void> reset()
inherited

Switches the event back to the non-signaled state.
All subsequent calls to the wait method will block the calling code.

Implementation

Future<void> reset() {
  _isSet = false;
  return _void;
}