AppIgnorePointer constructor

const AppIgnorePointer({
  1. Key? key,
  2. required Widget child,
  3. bool ignoring = false,
})

Implementation

const AppIgnorePointer({
  super.key,
  required this.child,
  this.ignoring = false,
});