TabbedFolders constructor

const TabbedFolders({
  1. Key? key,
  2. required List<FolderTab> tabs,
  3. double selectedHeight = 34.0,
  4. double unselectedHeight = 26.0,
  5. double indicatorHeight = 4.0,
  6. double topPadding = 0.0,
  7. double verticalTabPadding = 2.0,
})

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,
});