OneScroll constructor

const OneScroll({
  1. Key? key,
  2. Widget? child,
  3. List<Widget>? children,
  4. EdgeInsets? padding,
  5. bool isThin = true,
  6. bool bottomBigPadding = false,
  7. ScrollController? controller,
  8. double? addPadding,
  9. ScrollPhysics? physics,
})

Implementation

const OneScroll({
  super.key,
  this.child,
  this.children,
  this.padding,
  this.isThin = true,
  this.bottomBigPadding = false,
  this.controller,
  this.addPadding,
  this.physics,
});