location property

String location

Implementation

String get location => _getAttribute<String>(kLocation, '');
void location=(String? x)

pass null to remove key from attributes

Implementation

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