start method
Start the bot
Implementation
Future<void> start() async {
if (_isStarted) return;
await _client.connect(enableResuming: true);
_isStarted = true;
}
Start the bot
Future<void> start() async {
if (_isStarted) return;
await _client.connect(enableResuming: true);
_isStarted = true;
}