TouchCalibrationPair constructor
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,
);