updateMe method
Update bot info, useful if bot info are changed from BotFather while the bot is running
Implementation
Future updateMe() async {
var user = await getMe();
_id = user.id;
_name = user.firstName;
_username = user.username!;
_log = Logger(_name!);
}