shutdown method

Future<void> shutdown()

Shuts down the server (ADR-016 3.3 - properly await dispose).

Implementation

Future<void> shutdown() async {
  await _sourceLoader.dispose();
  _initialized = false;
}