NavigationPanelBody constructor

const NavigationPanelBody({
  1. Key? key,
  2. required int index,
  3. required List<Widget> children,
  4. AnimatedSwitcherTransitionBuilder? transitionBuilder,
  5. Curve? animationCurve,
  6. Duration? animationDuration,
})

Implementation

const NavigationPanelBody({
  Key? key,
  required this.index,
  required this.children,
  this.transitionBuilder,
  this.animationCurve,
  this.animationDuration,
}) : super(key: key);