TransparentPointer constructor

const TransparentPointer({
  1. Key? key,
  2. required Widget? child,
  3. bool transparent = true,
  4. Rect? transparentRect,
})

Implementation

const TransparentPointer({
  super.key,
  required super.child,
  this.transparent = true,
  this.transparentRect,
});