fromNative static method

Point<double> fromNative(
  1. ScreenPointNative native
)

Implementation

static math.Point<double> fromNative(ScreenPointNative native) {
  return math.Point<double>(native.x, native.y);
}