unfavoriteChat method
- ChatId id
Removes the specified Chat from the favorites list of the authenticated MyUser.
Implementation
Future<void> unfavoriteChat(ChatId id) async {
Log.debug('unfavoriteChat($id)', '$runtimeType');
await _chatRepository.unfavoriteChat(id);
}