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