CellAnnotatedRegion<T extends Object> constructor

const CellAnnotatedRegion<T extends Object>({
  1. Key? key,
  2. required ValueCell<Widget> child,
  3. required ValueCell<T> value,
  4. ValueCell<bool> sized = const ValueCell.value(true),
})

Implementation

const CellAnnotatedRegion({
  super.key,
  required this.child,
  required this.value,
  this.sized = const ValueCell.value(true),
});