getChat method

Future<GetChat$Query> getChat(
  1. ChatId id
)

Returns a Chat by its ID.

The authenticated MyUser should be a member of the Chat in order to view it.

Authentication

Mandatory.

Implementation

Future<GetChat$Query> getChat(ChatId id) async {
  Log.debug('getChat($id)', '$runtimeType');

  final variables = GetChatArguments(id: id);
  final QueryResult result = await client.query(
    QueryOptions(
      operationName: 'GetChat',
      document: GetChatQuery(variables: variables).document,
      variables: variables.toJson(),
    ),
  );
  return GetChat$Query.fromJson(result.data!);
}