CellConstrainedBox constructor

const CellConstrainedBox({
  1. Key? key,
  2. required ValueCell<BoxConstraints> constraints,
  3. ValueCell<Widget?>? child,
})

Implementation

const CellConstrainedBox({
  super.key,
  required this.constraints,
  this.child,
});