PipenColumn constructor

PipenColumn({
  1. Key? key,
  2. Widget? child,
  3. EdgeInsets? padding,
  4. double? spacing,
  5. MainAxisAlignment? vertical,
  6. List<Widget>? children,
  7. Iterable<Widget>? listable,
  8. CrossAxisAlignment? horizontal,
  9. MainAxisSize? mainAxisSize,
})

Implementation

PipenColumn({
  super.key,
  this.child,
  this.padding,
  this.spacing,
  this.vertical,
  this.children,
  this.listable,
  this.horizontal,
  this.mainAxisSize,
}) {
  assert(child != null || children != null || listable != null);
}