address property

String address

Implementation

String get address => _getAttribute<String>(kAddress, '');
void address=(String? x)

pass null to remove key from attributes

Implementation

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