ScrollRailLayoutProps constructor

const ScrollRailLayoutProps({
  1. required Widget rail,
  2. required Widget child,
  3. ScrollRailPosition railPosition = ScrollRailPosition.left,
  4. ScrollRailSize railSize = ScrollRailSize.md,
  5. String? railWidth,
  6. String headerHeight = '0px',
  7. bool showBorder = true,
  8. String? railBackground,
  9. String? contentBackground,
})

Implementation

const ScrollRailLayoutProps({
  required this.rail,
  required this.child,
  this.railPosition = ScrollRailPosition.left,
  this.railSize = ScrollRailSize.md,
  this.railWidth,
  this.headerHeight = '0px',
  this.showBorder = true,
  this.railBackground,
  this.contentBackground,
});