text property

String get text

Implementation

String get text {
  return _json['text'] as String;
}
set text (String value)

Implementation

set text(String value) {
  _json['text'] = value;
}