ThreeColumnNavigation constructor

ThreeColumnNavigation({
  1. Key? key,
  2. required List<MainSection> sections,
  3. bool showDetailsArrows = true,
  4. IconData expandedIconData = Icons.fullscreen_exit,
  5. IconData collapsedIconData = Icons.fullscreen,
  6. bool initiallyExpanded = true,
  7. Widget? bottomAppBar,
  8. Color? backgroundColor,
  9. Text? title,
})

Implementation

ThreeColumnNavigation({
  Key? key,
  required this.sections,
  this.showDetailsArrows = true,
  this.expandedIconData = Icons.fullscreen_exit,
  this.collapsedIconData = Icons.fullscreen,
  this.initiallyExpanded = true,
  this.bottomAppBar,
  this.backgroundColor,
  this.title,
}) : super(key: key);