deleteMessage method

Future<void> deleteMessage(
  1. ChatItem item
)

Deletes the specified ChatItem posted by the authenticated MyUser.

Implementation

Future<void> deleteMessage(ChatItem item) async {
  try {
    await _chatService.deleteChatItem(item);
  } on DeleteChatMessageException catch (e) {
    MessagePopup.error(e);
  } on DeleteChatForwardException catch (e) {
    MessagePopup.error(e);
  } catch (e) {
    MessagePopup.error(e);
    rethrow;
  }
}