TimeZoneName property

String? TimeZoneName
Gets or sets the name of the associated time zone.

Implementation

String? get TimeZoneName => this._timeZoneName;
void TimeZoneName=(String? value)

Implementation

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