toNative static method

PointNative toNative(
  1. Point obj
)

Implementation

static PointNative toNative(Point obj)  {
    return _PointNativeInit(
      obj.x,
      obj.y,
    );
}