MoreRow constructor

const MoreRow({
  1. Key? key,
  2. MoreMainAxisAlignment moreMainAxisAlignment = MoreMainAxisAlignment.start,
  3. MainAxisSize mainAxisSize = MainAxisSize.max,
  4. CrossAxisAlignment crossAxisAlignment = CrossAxisAlignment.center,
  5. TextDirection? textDirection,
  6. VerticalDirection verticalDirection = VerticalDirection.down,
  7. TextBaseline? textBaseline,
  8. List<Widget> children = const <Widget>[],
})

Implementation

const MoreRow({
  super.key,
  super.moreMainAxisAlignment,
  super.mainAxisSize,
  super.crossAxisAlignment,
  super.textDirection,
  super.verticalDirection,
  super.textBaseline, // NO DEFAULT: we don't know what the text's baseline should be
  super.children,
}) : super(
  direction: Axis.horizontal,
);