message method

Future<DtoChatItem?> message(
  1. ChatItemId id
)

Fetches the DtoChatItem with the provided id.

Implementation

Future<DtoChatItem?> message(ChatItemId id) async {
  Log.debug('message($id)', '$runtimeType');
  return (await _graphQlProvider.chatItem(id)).chatItem?.toDto();
}