MyRow constructor

const MyRow({
  1. Key? key,
  2. required List<Widget> children,
  3. MainAxisAlignment mainAxisAlignment = MainAxisAlignment.spaceBetween,
  4. CrossAxisAlignment crossAxisAlignment = CrossAxisAlignment.center,
})

Implementation

const MyRow({
  super.key,
  required this.children,
  this.mainAxisAlignment = MainAxisAlignment.spaceBetween,
  this.crossAxisAlignment = CrossAxisAlignment.center,
});