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