deleteContact method
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;
}
}