fromNative static method

XYPoint fromNative(
  1. XYPointNative native
)

Implementation

static XYPoint fromNative(XYPointNative native) {
  return XYPoint(x: native.x, y: native.y);
}