deleteFromContacts method
- ChatContact contact
Removes a contact
from the ContactService's address book.
Implementation
Future<void> deleteFromContacts(ChatContact contact) async {
await _contactService.deleteContact(contact.id);
}
Removes a contact
from the ContactService's address book.
Future<void> deleteFromContacts(ChatContact contact) async {
await _contactService.deleteContact(contact.id);
}