getChat method

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

Use this method to get up to date information about the chat (current name of the user for one-on-one conversations, current username of a user, group or channel, etc.).

Returns a Chat object on success.

Implementation

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