fromNative static method

Point fromNative(
  1. PointNative native, {
  2. bool takeOwnership = true,
})

Implementation

static Point fromNative(PointNative native, {bool takeOwnership = true})  {
    return Point(
      native.x,
      native.y,
    );
}