unfavoriteChatContact method
Removes the specified ChatContact from the favorites list of the authenticated MyUser.
Implementation
Future<void> unfavoriteChatContact(ChatContactId id) async {
Log.debug('unfavoriteChatContact($id)', '$runtimeType');
await _contactRepository.unfavoriteChatContact(id);
}