deleteFromContacts method

Future<void> deleteFromContacts(
  1. ChatContact contact
)

Removes a contact from the ContactService's address book.

Implementation

Future<void> deleteFromContacts(ChatContact contact) async {
  await _contactService.deleteContact(contact.id);
}