fromNative static method
Implementation
static BoundingBox fromNative(BoundingBoxNative native, {bool takeOwnership = true}) {
return BoundingBox(
PointImpl.fromNative(native.bottomLeft, takeOwnership: takeOwnership),
PointImpl.fromNative(native.topRight, takeOwnership: takeOwnership),
);
}