RowToColumn constructor

const RowToColumn({
  1. Key? key,
  2. required List<Widget> children,
  3. required bool isVertical,
  4. bool? isColumnToRow,
  5. MainAxisAlignment? mainAxisAlignment,
  6. MainAxisSize? mainAxisSize,
  7. CrossAxisAlignment? crossAxisAlignment,
})

Implementation

const RowToColumn(
    {Key? key,
    required this.children,
    required this.isVertical,
    this.isColumnToRow,
    this.mainAxisAlignment,
    this.mainAxisSize,
    this.crossAxisAlignment})
    : super(key: key);