SplitTabbedView constructor

const SplitTabbedView({
  1. Key? key,
  2. String? hookName,
  3. List<SplitViewFolderTab> folderTabs = const [],
  4. List<SplitViewContentArea> contentAreas = const [],
  5. double folderTabsFlex = 2.0,
  6. SplitViewPosition position = SplitViewPosition.none,
  7. void onTabChanged(
    1. int
    )?,
})

Implementation

const SplitTabbedView({
  super.key,
  String? hookName,
  this.folderTabs = const [],
  this.contentAreas = const [],
  this.folderTabsFlex = 2.0,
  this.position = SplitViewPosition.none,
  this.onTabChanged,
}) : _hookName = hookName;