FlutterFolderViewTheme constructor

const FlutterFolderViewTheme({
  1. required FolderViewLineTheme lineTheme,
  2. required FolderViewScrollbarTheme scrollbarTheme,
  3. FolderViewTextTheme textTheme = const FolderViewTextTheme(),
  4. FolderViewIconTheme iconTheme = const FolderViewIconTheme(),
  5. FolderViewSpacingTheme spacingTheme = const FolderViewSpacingTheme(),
  6. FolderViewNodeStyleTheme nodeStyleTheme = const FolderViewNodeStyleTheme(),
})

Creates a FlutterFolderViewTheme with the given properties

Implementation

const FlutterFolderViewTheme({
  required this.lineTheme,
  required this.scrollbarTheme,
  this.textTheme = const FolderViewTextTheme(),
  this.iconTheme = const FolderViewIconTheme(),
  this.spacingTheme = const FolderViewSpacingTheme(),
  this.nodeStyleTheme = const FolderViewNodeStyleTheme(),
});