country property

String country

Implementation

String get country => _getAttribute<String>(kCountry, '');
void country=(String? x)

pass null to remove key from attributes

Implementation

set country(String? x) =>
    (x == null) ? _attributes.remove(kCountry) : _attributes[kCountry] = x;