archiveChat method
Archives or unarchives the specified Chat for the authenticated MyUser.
Implementation
Future<void> archiveChat(ChatId id, bool archive) {
Log.debug('archiveChat($id, $archive)', '$runtimeType');
return _chatRepository.archiveChat(id, archive);
}