Column constructor

Column({
  1. List<Widget> children = const [],
  2. int gap = 0,
  3. MainAxisAlignment mainAxisAlignment = .start,
  4. CrossAxisAlignment crossAxisAlignment = .start,
  5. MainAxisSize mainAxisSize = .min,
  6. int? width,
  7. int? height,
  8. Key? key,
})

Implementation

Column({
  super.children = const [],
  super.gap = 0,
  super.mainAxisAlignment = .start,
  super.crossAxisAlignment = .start,
  super.mainAxisSize = .min,
  int? width,
  int? height,
  super.key,
}) : super(
       direction: .vertical,
       mainAxisExtent: height,
       crossAxisExtent: width,
     );