latitude property

double latitude

Implementation

double get latitude => _getAttribute<double>(kLatitude, 0);
void latitude=(double? x)

pass null to remove key from attributes

Implementation

set latitude(double? x) =>
    (x == null) ? _attributes.remove(kLatitude) : _attributes[kLatitude] = x;