PipenRow constructor
PipenRow({
- Key? key,
- Widget? child,
- EdgeInsets? margin,
- CrossAxisAlignment? vertical,
- List<
Widget> ? children, - Iterable<
Widget> ? listable, - MainAxisAlignment? horizontal,
- MainAxisSize? mainAxisSize,
Implementation
PipenRow({
super.key,
this.child,
this.margin,
this.vertical,
this.children,
this.listable,
this.horizontal,
this.mainAxisSize,
}) {
assert(child != null || children != null || listable != null);
}