ContentType property
String?
get
ContentType
Implementation
String? get ContentType => this._contentType;
set
ContentType
(String? value)
Implementation
set ContentType(String? value) {
if (CanSetFieldValue(this._contentType, value)) {
this._contentType = value;
this.Changed();
}
}