getMe method
A simple method for testing your bot's auth token. Requires no parameters. Returns basic information about the bot in form of a User object.
Implementation
Future<User> getMe() async =>
User.fromJson(await HttpClient.httpGet(_apiUri('getMe')));