start method

Future<void> start()

Start the bot

Implementation

Future<void> start() async {
  if (_isStarted) return;

  await _client.connect(enableResuming: true);
  _isStarted = true;
}