BaseQuoteContent.from constructor

BaseQuoteContent.from(
  1. String text,
  2. Mapping origin
)

Implementation

BaseQuoteContent.from(String text, Mapping origin) : super.fromType(ContentType.QUOTE) {
  // text message
  this['text'] = text;
  // original envelope of message quote with,
  // includes 'sender', 'receiver', 'type' and 'sn'
  this['origin'] = origin;
}