content property

String content
override

Gets the value of "content"

Implementation

String get content => this._content;
void content= (String value)
override

Sets the value of "content"

Implementation

set content(String value) {
  _content = value == null ? '' : value;
}