CellIgnorePointer constructor

const CellIgnorePointer({
  1. Key? key,
  2. ValueCell<bool> ignoring = const ValueCell.value(true),
  3. ValueCell<bool?>? ignoringSemantics,
  4. ValueCell<Widget?>? child,
})

Implementation

const CellIgnorePointer({
  super.key,
  this.ignoring = const ValueCell.value(true),
  this.ignoringSemantics,
  this.child,
});