Type property

String? get Type
Gets or sets the type.

Implementation

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

Implementation

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