BodyType property

BodyType? BodyType
Gets or sets the type of the message body's text.

Implementation

enumerations.BodyType? get BodyType => this._bodyType;
void BodyType=(BodyType? value)

Implementation

set BodyType(enumerations.BodyType? value) {
  if (CanSetFieldValue(this._bodyType, value)) {
    this._bodyType = _bodyType;
    Changed();
  }
}