stop method

Future<void> stop()

Stops the dashboard server.

Implementation

Future<void> stop() async {
  await _server?.close(force: true);
  logger.info('Dashboard stopped.');
}