Country property

String? Country
Gets or sets the Country.

Implementation

String? get Country => this._country;
void Country=(String? value)

Implementation

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