Column constructor

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

Implementation

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