NUIZoomOverlay constructor

const NUIZoomOverlay({
  1. Key? key,
  2. required bool twoTouchOnly,
  3. required Widget child,
})

Implementation

const NUIZoomOverlay({
  Key? key,
  required this.twoTouchOnly,
  required this.child,
})  : assert(child != null),
      super(key: key);