RowSimple constructor

const RowSimple({
  1. required List<Widget> children,
  2. String bootstrapClass = "",
  3. CrossAxisAlignment crossAxisAlignment = CrossAxisAlignment.center,
  4. MainAxisAlignment mainAxisAlignment = MainAxisAlignment.start,
  5. MainAxisSize mainAxisSize = MainAxisSize.max,
  6. TextBaseline? textBaseline,
  7. TextDirection? textDirection,
  8. VerticalDirection verticalDirection = VerticalDirection.down,
  9. Key? key,
})

Implementation

const RowSimple({
  required this.children,
  this.bootstrapClass="",
  this.crossAxisAlignment=CrossAxisAlignment.center,
  this.mainAxisAlignment=MainAxisAlignment.start,
  this.mainAxisSize=MainAxisSize.max,
  this.textBaseline,
  this.textDirection,
  this.verticalDirection=VerticalDirection.down,
  Key? key}) : super(
    key: key
);