PipenRow constructor
PipenRow({
- Key? key,
- Widget? child,
- EdgeInsets? padding,
- CrossAxisAlignment? vertical,
- List<
Widget> ? children, - double? spacing,
- Iterable<
Widget> ? listable, - MainAxisAlignment? horizontal,
- 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);
}