city property

String city

Implementation

String get city => _getAttribute<String>(kCity, '');
void city=(String? x)

pass null to remove key from attributes

Implementation

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