toModel method

ChatCallQuote toModel()

Constructs a new ChatCallQuote from this ChatCallQuoteMixin.

Implementation

ChatCallQuote toModel() => ChatCallQuote(
  original: original == null
      ? null
      : _chatItem(original!.node, original!.cursor).value,
  author: author.id,
  at: at,
);