homeLocation property

String homeLocation

Implementation

String get homeLocation => _getAttribute<String>(kHomeLocation, '');
void homeLocation=(String? x)

Where the resource is normally kept

pass null to remove key from attributes

Implementation

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