City property

String? City
Gets or sets the City.

Implementation

String? get City => this._city;
void City=(String? value)

Implementation

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