stop method

Future<void> stop()

Implementation

Future<void> stop() async {
  if (_wsConnection != null) {
    await _wsConnection!.stop();
  }
}