message method
- 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();
}