ScaleStartDetails constructor Null safety
Creates details for GestureScaleStartCallback.
The focalPoint argument must not be null.
Implementation
ScaleStartDetails({ this.focalPoint = Offset.zero, Offset? localFocalPoint, this.pointerCount = 0 })
: assert(focalPoint != null), localFocalPoint = localFocalPoint ?? focalPoint;