CellFittedBox constructor

const CellFittedBox({
  1. Key? key,
  2. ValueCell<BoxFit> fit = const ValueCell.value(BoxFit.contain),
  3. ValueCell<AlignmentGeometry> alignment = const ValueCell.value(Alignment.center),
  4. ValueCell<Clip> clipBehavior = const ValueCell.value(Clip.none),
  5. ValueCell<Widget?>? child,
})

Implementation

const CellFittedBox({
  super.key,
  this.fit = const ValueCell.value(BoxFit.contain),
  this.alignment = const ValueCell.value(Alignment.center),
  this.clipBehavior = const ValueCell.value(Clip.none),
  this.child,
});