from property

String? from
override

Property getter and setter for from:

Implementation

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

Implementation

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