coords property

LatLng? get coords

Implementation

LatLng? get coords => y != null && x != null
    ? LatLng(double.parse(y!.replaceAll(',', '.')),
        double.parse(x!.replaceAll(',', '.')))
    : fallback_coords;