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