SeparatedRow constructor Null safety

const SeparatedRow(
  1. {Key? key,
  2. TextBaseline? textBaseline,
  3. TextDirection? textDirection,
  4. List<Widget> children = const <Widget>[],
  5. bool includeOuterSeparators = false,
  6. MainAxisSize mainAxisSize = MainAxisSize.max,
  7. VerticalDirection verticalDirection = VerticalDirection.down,
  8. MainAxisAlignment mainAxisAlignment = MainAxisAlignment.start,
  9. CrossAxisAlignment crossAxisAlignment = CrossAxisAlignment.center,
  10. 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);