FolderViewVerticalScrollbar constructor

const FolderViewVerticalScrollbar({
  1. Key? key,
  2. required bool isHover,
  3. required ScrollController verticalScrollbarController,
  4. required double contentHeight,
  5. required bool needsHorizontalScroll,
  6. required FolderViewScrollbarTheme scrollbarTheme,
})

Implementation

const FolderViewVerticalScrollbar({
  super.key,
  required this.isHover,
  required this.verticalScrollbarController,
  required this.contentHeight,
  required this.needsHorizontalScroll,
  required this.scrollbarTheme,
});