CellAbsorbPointer constructor

const CellAbsorbPointer({
  1. Key? key,
  2. ValueCell<bool> absorbing = const ValueCell.value(true),
  3. ValueCell<bool?>? ignoringSemantics,
})

Implementation

const CellAbsorbPointer({
  super.key,
  this.absorbing = const ValueCell.value(true),
  this.ignoringSemantics,
});