deleteChatContact method
Deletes the specified ChatContact from the authenticated MyUser's address book.
Authentication
Mandatory.
Result
Only the following ChatContactEvent may be produced on success:
Idempotent
Succeeds as no-op (and returns no ChatContactEvent) if the specified ChatContact doesn't exist already.
Implementation
Future<DeleteChatContact$Mutation> deleteChatContact(ChatContactId id) async {
throw UnimplementedError();
// Log.debug('deleteChatContact($id)', '$runtimeType');
// final variables = DeleteChatContactArguments(id: id);
// final QueryResult result = await client.mutate(
// MutationOptions(
// operationName: 'DeleteChatContact',
// document: DeleteChatContactMutation(variables: variables).document,
// variables: variables.toJson(),
// ),
// );
// return DeleteChatContact$Mutation.fromJson(result.data!);
}