Row constructor

const Row({
  1. List<Widget> children = const <Widget>[],
  2. MainAxisAlignment mainAxisAlignment = MainAxisAlignment.start,
  3. CrossAxisAlignment crossAxisAlignment = CrossAxisAlignment.center,
  4. MainAxisSize mainAxisSize = MainAxisSize.max,
})

Row API.

Implementation

const Row({
  super.children,
  super.mainAxisAlignment,
  super.crossAxisAlignment = CrossAxisAlignment.center,
  super.mainAxisSize,
}) : super(direction: Axis.horizontal);