fromNative static method

BoundingBox fromNative(
  1. BoundingBoxNative native, {
  2. bool takeOwnership = true,
})

Implementation

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