PointerInterceptor constructor

PointerInterceptor({
  1. required Widget child,
  2. bool intercepting = true,
  3. bool debug = false,
  4. Key? key,
})

Create a PointerInterceptor wrapping a child.

Implementation

// ignore: prefer_const_constructors_in_immutables
PointerInterceptor({
  required this.child,
  this.intercepting = true,
  this.debug = false,
  super.key,
});