Row constructor

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

Implementation

Row({
  super.mainAxisAlignment,
  super.mainAxisSize,
  super.crossAxisAlignment,
  super.verticalDirection,
  super.children,
}) : super(
        direction: Axis.horizontal,
      );