fromNative static method

BoundingBox fromNative(
  1. BoundingBoxNative native
)

Implementation

static BoundingBox fromNative(BoundingBoxNative native) {
  return BoundingBox(
      mapkit_geometry_point.PointImpl.fromNative(native.southWest),
      mapkit_geometry_point.PointImpl.fromNative(native.northEast));
}