toDto method

DtoChatForward toDto(
  1. ChatItemsCursor cursor
)

Constructs the new DtoChatForwards from this NestedChatForwardMixin.

Implementation

DtoChatForward toDto(ChatItemsCursor cursor) {
  final DtoChatItemQuote item = quote.toDto();

  return DtoChatForward(
    ChatForward(id, chatId, author.toModel(), at, quote: item.value),
    cursor,
    ver,
    item.cursor,
  );
}