MyRow constructor
const
MyRow({
- Key? key,
- required List<
Widget> children, - MainAxisAlignment mainAxisAlignment = MainAxisAlignment.spaceBetween,
- CrossAxisAlignment crossAxisAlignment = CrossAxisAlignment.center,
Implementation
const MyRow({
super.key,
required this.children,
this.mainAxisAlignment = MainAxisAlignment.spaceBetween,
this.crossAxisAlignment = CrossAxisAlignment.center,
});