close method

Future<void> close()

Closes all streams.

Implementation

Future<void> close() async {
  await Future.wait([
    eventsController.close(),
    noticesController.close(),
  ]);
}