CellConstraintsTransformBox constructor

const CellConstraintsTransformBox({
  1. Key? key,
  2. ValueCell<Widget?>? child,
  3. ValueCell<TextDirection?>? textDirection,
  4. ValueCell<AlignmentGeometry> alignment = const ValueCell.value(Alignment.center),
  5. required ValueCell<BoxConstraints Function(BoxConstraints)> constraintsTransform,
  6. ValueCell<Clip> clipBehavior = const ValueCell.value(Clip.none),
  7. ValueCell<String> debugTransformType = const ValueCell.value(''),
})

Implementation

const CellConstraintsTransformBox({
  super.key,
  this.child,
  this.textDirection,
  this.alignment = const ValueCell.value(Alignment.center),
  required this.constraintsTransform,
  this.clipBehavior = const ValueCell.value(Clip.none),
  this.debugTransformType = const ValueCell.value(''),
});