latLong static method
Ensures the string is a valid latitude,longitude pair.
Implementation
static String? Function(String?) latLong({
String errorMessage = 'Please enter valid coordinates',
}) {
return _build(errorMessage, (v) => v.isLatLong);
}