OpsSUpdateDetails constructor
OpsSUpdateDetails({})
Creates details for GestureScaleUpdateCallback.
The focalPoint, scale, horizontalScale, verticalScale, rotation
arguments must not be null. The scale, horizontalScale, and verticalScale
argument must be greater than or equal to zero.
Implementation
OpsSUpdateDetails({
this.globalPointerLocations,
this.localPointerLocations,
this.focalPoint = Offset.zero,
Offset? localFocalPoint,
this.scale = 1.0,
this.horizontalScale = 1.0,
this.verticalScale = 1.0,
this.rotation = 0.0,
}) : assert(scale >= 0.0),
assert(horizontalScale >= 0.0),
assert(verticalScale >= 0.0),
localFocalPoint = localFocalPoint ?? focalPoint;