CellBlockSemantics constructor

const CellBlockSemantics({
  1. Key? key,
  2. ValueCell<bool> blocking = const ValueCell.value(true),
  3. ValueCell<Widget?>? child,
})

Implementation

const CellBlockSemantics({
  super.key,
  this.blocking = const ValueCell.value(true),
  this.child,
});