isGeolocationSetManually property

bool isGeolocationSetManually

Implementation

bool get isGeolocationSetManually =>
    _getAttribute<bool>(kGeolocationSetManually, false);
void isGeolocationSetManually=(bool? x)

pass null to remove key from attributes

Implementation

set isGeolocationSetManually(bool? x) => (x == null)
    ? _attributes.remove(kGeolocationSetManually)
    : _attributes[kGeolocationSetManually] = x;