CellFractionallySizedBox constructor

const CellFractionallySizedBox({
  1. Key? key,
  2. ValueCell<AlignmentGeometry> alignment = const ValueCell.value(Alignment.center),
  3. ValueCell<double?>? widthFactor,
  4. ValueCell<double?>? heightFactor,
  5. ValueCell<Widget?>? child,
})

Implementation

const CellFractionallySizedBox({
  super.key,
  this.alignment = const ValueCell.value(Alignment.center),
  this.widthFactor,
  this.heightFactor,
  this.child,
});