CellCenter constructor

const CellCenter({
  1. Key? key,
  2. ValueCell<double?>? widthFactor,
  3. ValueCell<double?>? heightFactor,
  4. ValueCell<Widget?>? child,
})

Implementation

const CellCenter({
  super.key,
  this.widthFactor,
  this.heightFactor,
  this.child,
});