stop method
Stop the bot
Implementation
Future<void> stop() async {
if (!_isStarted) return;
await _client.disconnect();
_isStarted = false;
}
Stop the bot
Future<void> stop() async {
if (!_isStarted) return;
await _client.disconnect();
_isStarted = false;
}