zip property

String zip

Implementation

String get zip => _getAttribute<String>(kZip, '');
void zip=(String? x)

pass null to remove key from attributes

Implementation

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