close method

Future<void> close()

Closes the broadcast event stream and drops all retained terminals (call from an addTearDown).

Implementation

Future<void> close() {
  _terminals.clear();
  return _events.close();
}