toNative static method

BoundingBoxNative toNative(
  1. BoundingBox obj
)

Implementation

static BoundingBoxNative toNative(BoundingBox obj)  {
    return _BoundingBoxNativeInit(
      PointImpl.toNative(obj.bottomLeft),
      PointImpl.toNative(obj.topRight),
    );
}