RequestedUniqueBodyType property

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

Implementation

BodyType? get RequestedUniqueBodyType => this._requestedUniqueBodyType;
void RequestedUniqueBodyType=(BodyType? value)

Implementation

set RequestedUniqueBodyType(BodyType? value) {
  this._ThrowIfReadonly();
  this._requestedUniqueBodyType = value;
}