TabbedFolders constructor
      const
      TabbedFolders({ 
    
    
- Key? key,
- required List<FolderTab> tabs,
- double selectedHeight = 34.0,
- double unselectedHeight = 26.0,
- double indicatorHeight = 4.0,
- double topPadding = 0.0,
- double verticalTabPadding = 2.0,
- TabAxisAlignment alignment = TabAxisAlignment.start,
- bool showContentBorder = true,
- bool disableContentAnimation = false,
- dynamic onInit()?,
- dynamic onTabChanged()?,
Implementation
const TabbedFolders({
  super.key,
  required this.tabs,
  this.selectedHeight = 34.0,
  this.unselectedHeight = 26.0,
  this.indicatorHeight = 4.0,
  this.topPadding = 0.0,
  this.verticalTabPadding = 2.0,
  this.alignment = TabAxisAlignment.start,
  this.showContentBorder = true,
  this.disableContentAnimation = false,
  this.onInit,
  this.onTabChanged,
});