Text property

String? Text
Gets or sets the text of the message body.

Implementation

String? get Text => this._text;
void Text=(String? value)

Implementation

set Text(String? value) {
  if (CanSetFieldValue(this._text, value)) {
    this._text = value;
    Changed();
  }
}