deleteContact method

Future<void> deleteContact(
  1. ChatContactId id
)

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

Implementation

Future<void> deleteContact(ChatContactId id) async {
  Log.debug('deleteContact($id)', '$runtimeType');
  await _contactRepository.deleteContact(id);
}