resendChatItem method

Future<void> resendChatItem(
  1. ChatItem item
)

Resends the specified item.

Implementation

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