hideChatItem method

Future<void> hideChatItem(
  1. ChatItem item
)

Hides the specified ChatItem for the authenticated MyUser.

Implementation

Future<void> hideChatItem(ChatItem item) async {
  Log.debug('hideChatItem($item)', '$runtimeType');
  await _chatRepository.hideChatItem(item.chatId, item.id);
}