RowSuper constructor

RowSuper({
  1. Key? key,
  2. required List<Widget?> children,
  3. double outerDistance = 0.0,
  4. double innerDistance = 0.0,
  5. bool invert = false,
  6. Alignment alignment = Alignment.center,
  7. Widget? separator,
  8. bool separatorOnTop = true,
  9. bool fitHorizontally = false,
  10. double? shrinkLimit,
  11. MainAxisSize mainAxisSize = MainAxisSize.min,
  12. bool fill = false,
})

Implementation

RowSuper({
  Key? key,
  required List<Widget?> children,
  this.outerDistance = 0.0,
  this.innerDistance = 0.0,
  this.invert = false,
  this.alignment = Alignment.center,
  this.separator,
  this.separatorOnTop = true,
  this.fitHorizontally = false,
  this.shrinkLimit,
  this.mainAxisSize = MainAxisSize.min,
  this.fill = false,
}) : super(
          key: key,
          children: _childrenPlusSeparator(children, separator, fitHorizontally, shrinkLimit));