PinchView constructor

const PinchView({
  1. Key? key,
  2. required double contentRatio,
  3. required Widget child,
  4. bool disable = false,
})

Implementation

const PinchView({
  super.key,
  required this.contentRatio,
  required this.child,
  this.disable = false,
});