toDto method

DtoChatItem toDto(
  1. ChatItemsCursor cursor
)

Constructs the new DtoChatItems from this ChatForwardMixin.

Implementation

DtoChatItem toDto(ChatItemsCursor cursor) {
  final DtoChatItemQuote item = quote.toDto();
  return DtoChatForward(
    ChatForward(id, chatId, author.toModel(), at, quote: item.value),
    cursor,
    ver,
    item.cursor,
  );
}