deleteContact method

  1. @override
Future<void> deleteContact(
  1. ChatContactId id
)
override

Deletes the specified ChatContact from the authenticated MyUser's address book.

No-op if the specified ChatContact doesn't exist.

Implementation

@override
Future<void> deleteContact(ChatContactId id) async {
  Log.debug('deleteContact($id)', '$runtimeType');

  final RxChatContactImpl? oldChatContact = paginated.remove(id);

  try {
    await _graphQlProvider.deleteChatContact(id);
  } catch (_) {
    paginated.addIf(oldChatContact != null, id, oldChatContact!);
    rethrow;
  }
}