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