PipenRow constructor

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

Implementation

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