ColumnSuper constructor

ColumnSuper(
  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 removeChildrenWithNoHeight = false}
)

Implementation

ColumnSuper({
  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.removeChildrenWithNoHeight = false,
}) : super(key: key, children: _childrenPlusSeparator(children, separator));