remove method
Removes a ChatContact identified by the provided id
.
Implementation
Future<void> remove(ChatContactId id) async {
Log.debug('remove($id)', '$runtimeType');
final ChatContact? contact = contacts[id]?.contact.value;
if (contact != null) {
for (User user in contact.users) {
await _userRepo.removeContact(contact.id, user.id);
}
}
// TODO: Remove from local storage, if any.
// await _contactLocal.remove(id);
}