CellExcludeSemantics constructor

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

Implementation

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