RowColumn constructor

const RowColumn({
  1. Key? key,
  2. required Axis direction,
  3. required List<Widget> children,
  4. MainAxisAlignment mainAxisAlignment = MainAxisAlignment.center,
  5. MainAxisSize mainAxisSize = MainAxisSize.max,
  6. CrossAxisAlignment crossAxisAlignment = CrossAxisAlignment.center,
})

Implementation

const RowColumn({
  Key? key,
  required this.direction,
  required this.children,
  this.mainAxisAlignment = MainAxisAlignment.center,
  this.mainAxisSize = MainAxisSize.max,
  this.crossAxisAlignment = CrossAxisAlignment.center,
}) : super(key: key);