RequestedNormalizedBodyType property

BodyType? RequestedNormalizedBodyType
Gets or sets type of normalized body that should be loaded on items. If null, the should return the same value as body type.

Implementation

BodyType? get RequestedNormalizedBodyType =>
    this._requestedNormalizedBodyType;
void RequestedNormalizedBodyType=(BodyType? value)

Implementation

set RequestedNormalizedBodyType(BodyType? value) {
  this._ThrowIfReadonly();
  this._requestedNormalizedBodyType = value;
}