getChat method

Future<Chat> getChat(
  1. ChatID chatId
)
inherited

Implementation

Future<Chat> getChat(ChatID chatId) {
  return _client.apiCall(_token, 'getChat', {
    'chat_id': chatId,
  });
}