stop method

Future<void> stop()

Implementation

Future<void> stop() async {
  await Future.delayed(Duration.zero);
  await _server?.close();
}