SeparatedRow constructor Null safety
- {Key? key,
- TextBaseline? textBaseline,
- TextDirection? textDirection,
- List<
Widget> children = const <Widget>[], - bool includeOuterSeparators = false,
- MainAxisSize mainAxisSize = MainAxisSize.max,
- VerticalDirection verticalDirection = VerticalDirection.down,
- MainAxisAlignment mainAxisAlignment = MainAxisAlignment.start,
- CrossAxisAlignment crossAxisAlignment = CrossAxisAlignment.center,
- required IndexedWidgetBuilder separatorBuilder}
Implementation
const SeparatedRow({
Key? key,
this.textBaseline,
this.textDirection,
this.children = const <Widget>[],
this.includeOuterSeparators = false,
this.mainAxisSize = MainAxisSize.max,
this.verticalDirection = VerticalDirection.down,
this.mainAxisAlignment = MainAxisAlignment.start,
this.crossAxisAlignment = CrossAxisAlignment.center,
required this.separatorBuilder,
}) : super(key: key);