reloadBot method
Reload the collected bot. The bot has to be collected first.
Implementation
Future<void> reloadBot() async {
if (_bot != null) {
await _bot!.reload();
}
}
Reload the collected bot. The bot has to be collected first.
Future<void> reloadBot() async {
if (_bot != null) {
await _bot!.reload();
}
}