CellRow constructor
const
CellRow({
- Key? key,
- ValueCell<
MainAxisAlignment> mainAxisAlignment = const ValueCell.value(MainAxisAlignment.start), - ValueCell<
MainAxisSize> mainAxisSize = const ValueCell.value(MainAxisSize.max), - ValueCell<
CrossAxisAlignment> crossAxisAlignment = const ValueCell.value(CrossAxisAlignment.center), - ValueCell<
TextDirection?> ? textDirection, - ValueCell<
VerticalDirection> verticalDirection = const ValueCell.value(VerticalDirection.down), - ValueCell<
TextBaseline?> ? textBaseline, - ValueCell<
List< children = const ValueCell.value(const <Widget>[]),Widget> >
Implementation
const CellRow({
super.key,
this.mainAxisAlignment = const ValueCell.value(MainAxisAlignment.start),
this.mainAxisSize = const ValueCell.value(MainAxisSize.max),
this.crossAxisAlignment = const ValueCell.value(CrossAxisAlignment.center),
this.textDirection,
this.verticalDirection = const ValueCell.value(VerticalDirection.down),
this.textBaseline,
this.children = const ValueCell.value(const <Widget>[]),
});