Type property

String? Type
Gets or sets the type.

Implementation

String? get Type => this._type;
void Type=(String? value)

Implementation

set Type(String? value) {
  if (this.CanSetFieldValue(this._type, value)) {
    this._type = value;
    this.Changed();
  }
}