Leaves the current chat.
Example:
await ctx.leaveChat();
Future<bool> leaveChat() async { final chatId = _getChatId(); _verifyInfo([chatId], APIMethod.leaveChat); return api.leaveChat(chatId!); }