fromNative static method

ScreenPoint fromNative(
  1. ScreenPointNative native
)

Implementation

static ScreenPoint fromNative(ScreenPointNative native) {
  return ScreenPoint(x: native.x, y: native.y);
}