Col constructor

const Col({
  1. Key? key,
  2. required List<Widget> children,
  3. MainAxisAlignment? mainAxisAlignment,
})

Implementation

const Col({Key? key, required this.children, this.mainAxisAlignment}) : super(key: key);