isValidBoundingBox static method
Validate bounding box coordinates
Implementation
static bool isValidBoundingBox({
required double swLat,
required double swLng,
required double neLat,
required double neLng,
}) {
return swLat < neLat && swLng < neLng && swLat >= -90 && neLat <= 90;
}