NavigationPaneTheme constructor

const NavigationPaneTheme({
  1. Key? key,
  2. required NavigationPaneThemeData data,
  3. required Widget child,
})

Creates a navigation pane theme that controls the configurations for NavigationPane.

Implementation

const NavigationPaneTheme({
  super.key,
  required this.data,
  required super.child,
});