reloadBot method

Future<void> reloadBot()

Reload the collected bot. The bot has to be collected first.

Implementation

Future<void> reloadBot() async {
  if (_bot != null) {
    await _bot!.reload();
  }
}