shutdown method

  1. @override
Future<void> shutdown()

Handles cleanup of all streams and other resources on shutdown.

Implementation

@override
Future<void> shutdown() async {
  await super.shutdown();
  await _rootsListChangedController?.close();
}