FolderTab constructor

const FolderTab({
  1. required String title,
  2. Widget? icon,
  3. IconData? iconData,
  4. double spaceBetween = 8,
  5. Color? color,
  6. Color? unselectedColor,
  7. Color? labelColor,
  8. Color? unselectedLabelColor,
  9. TextStyle? labelStyle,
  10. TextStyle? unselectedLabelStyle,
  11. required Widget? content,
})

Implementation

const FolderTab({
  required this.title,
  this.icon,
  this.iconData,
  this.spaceBetween = 8,
  this.color,
  this.unselectedColor,
  this.labelColor,
  this.unselectedLabelColor,
  this.labelStyle,
  this.unselectedLabelStyle,
  required this.content,
});