ScrollableOverflow constructor

ScrollableOverflow({
  1. bool keepLastDivider = false,
  2. Axis direction = Axis.horizontal,
  3. bool reverse = false,
  4. EdgeInsetsGeometry? padding,
  5. ScrollController? controller,
  6. bool? primary,
  7. ScrollPhysics? physics,
})

Implementation

ScrollableOverflow({
  this.keepLastDivider = false,
  this.direction = Axis.horizontal,
  this.reverse = false,
  this.padding,
  this.controller,
  this.primary,
  this.physics,
});