uninstall method
Uninstalls the plugin from the given bot.
This method should clean up any resources created during installation. The default implementation does nothing, but plugins that create persistent resources (timers, connections, etc.) should override this.
Parameters:
bot
: The bot instance to uninstall the plugin from
Implementation
@override
void uninstall(Bot<Context> bot) {
bot.api.removeTransformer(transformer);
}