content property

String content
inherited

Returns current content of message

Implementation

String get content => _content.toString();
void content=(Object content)
inherited

Clears current content of message and sets new

Implementation

set content(Object content) {
  _content.clear();
  _content.write(content);
}