content property

String get content
override

Gets the value of "content"

Implementation

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

Sets the value of "content"

Implementation

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