PipenScrollView constructor
PipenScrollView({
- Key? key,
- Widget? child,
- double? spacing,
- ScrollPhysics? physics,
- List<
Widget> ? children, - ScrollController? controller,
- Axis? scrollDirection,
- bool bottomSafeArea = false,
- EdgeInsets padding = EdgeInsets.zero,
Implementation
PipenScrollView({
super.key,
this.child,
this.spacing,
this.physics,
this.children,
this.controller,
this.scrollDirection,
this.bottomSafeArea = false,
this.padding = EdgeInsets.zero,
}) {
assert(children != null || child != null);
}