TouchCalibrationPair constructor

TouchCalibrationPair({
  1. required Point displayPoint,
  2. required Point touchPoint,
})

Implementation

TouchCalibrationPair({
  /// The coordinates of the display point.
  required Point displayPoint,

  /// The coordinates of the touch point corresponding to the display point.
  required Point touchPoint,
}) : _wrapped = $js.TouchCalibrationPair(
        displayPoint: displayPoint.toJS,
        touchPoint: touchPoint.toJS,
      );