EasySeparatedRow constructor

const EasySeparatedRow({
  1. Key? key,
  2. MainAxisAlignment mainAxisAlignment = MainAxisAlignment.start,
  3. MainAxisSize mainAxisSize = MainAxisSize.max,
  4. CrossAxisAlignment crossAxisAlignment = CrossAxisAlignment.center,
  5. TextDirection? textDirection,
  6. VerticalDirection verticalDirection = VerticalDirection.down,
  7. TextBaseline? textBaseline,
  8. required List<Widget> children,
  9. required IndexedWidgetBuilder separatorBuilder,
  10. bool separatorForLeft = false,
  11. bool separatorForRight = false,
})

Implementation

const EasySeparatedRow(
    {Key? key,
    this.mainAxisAlignment = MainAxisAlignment.start,
    this.mainAxisSize = MainAxisSize.max,
    this.crossAxisAlignment = CrossAxisAlignment.center,
    this.textDirection,
    this.verticalDirection = VerticalDirection.down,
    this.textBaseline,
    required this.children,
    required this.separatorBuilder,
    this.separatorForLeft = false,
    this.separatorForRight = false})
    : super(key: key);