addCommand method
Add a command to the command handler. command
is its name, and callback
is the
callback to invoke
Implementation
void addCommand(
String command, FutureOr<String?> Function(CommandArgs) callback) {
commands[command.toLowerCase()] = callback;
}