Column constructor
Column({
- List<
Widget> children = const [], - int gap = 0,
- MainAxisAlignment mainAxisAlignment = .start,
- CrossAxisAlignment crossAxisAlignment = .start,
- MainAxisSize mainAxisSize = .min,
- int? width,
- int? height,
- 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,
);