unfavoriteChat method

Future<ChatEventsVersionedMixin?> unfavoriteChat(
  1. ChatId id
)

Removes the specified Chat from the favorites list of the authenticated MyUser.

Authentication

Mandatory.

Result

Only the following ChatEvent may be produced on success:

Idempotent

Succeeds as no-op (and returns no ChatEvent) if the specified Chat is not in the favorites list already.

Implementation

Future<ChatEventsVersionedMixin?> unfavoriteChat(ChatId id) async {
  Log.debug('unfavoriteChat($id)', '$runtimeType');

  final variables = UnfavoriteChatArguments(id: id);
  final QueryResult result = await client.mutate(
    MutationOptions(
      operationName: 'UnfavoriteChat',
      document: UnfavoriteChatMutation(variables: variables).document,
      variables: variables.toJson(),
    ),
    onException:
        (data) => UnfavoriteChatException(
          (UnfavoriteChat$Mutation.fromJson(data).unfavoriteChat
                  as UnfavoriteChat$Mutation$UnfavoriteChat$UnfavoriteChatError)
              .code,
        ),
  );
  return UnfavoriteChat$Mutation.fromJson(result.data!).unfavoriteChat
      as ChatEventsVersionedMixin?;
}