GeoBoundingBox constructor
Implementation
factory GeoBoundingBox({
GeoPoint? topLeft,
GeoPoint? bottomRight,
}) {
final $result = create();
if (topLeft != null) {
$result.topLeft = topLeft;
}
if (bottomRight != null) {
$result.bottomRight = bottomRight;
}
return $result;
}