from property

String? get from
override

Property getter and setter for from:

Implementation

String? get from => _from;
set from (String? from)
override

Implementation

set from(String? from) {
  this._from = from;
  wrapped['from'] = jsonLiteral(from);
}