Name property

String? Name
Gets or sets the name of the time zone.

Implementation

String? get Name => this._name;
void Name=(String? value)

Implementation

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