ColumnGap constructor

const ColumnGap({
  1. Key? key,
  2. required List<Widget?> children,
  3. double paddingX = 0,
  4. double paddingY = 0,
  5. double gap = 16.0,
  6. MainAxisSize mainAxisSize = MainAxisSize.max,
  7. CrossAxisAlignment crossAxisAlignment = CrossAxisAlignment.center,
  8. bool showDivider = false,
})

Implementation

const ColumnGap({
  super.key,
  required this.children,
  this.paddingX = 0,
  this.paddingY = 0,
  this.gap = 16.0,
  this.mainAxisSize = MainAxisSize.max,
  this.crossAxisAlignment = CrossAxisAlignment.center,
  this.showDivider = false,
});