DefaultBottomNavigationController.fromValue constructor

DefaultBottomNavigationController.fromValue(
  1. BottomNavigationValue value, {
  2. Key? key,
  3. Duration transitionDuration = const Duration(milliseconds: 300),
  4. required Widget child,
})

Implementation

DefaultBottomNavigationController.fromValue(
  BottomNavigationValue value, {
  Key? key,
  this.transitionDuration = const Duration(milliseconds: 300),
  required this.child,
})  : initialIndex = value.currentIndex,
      super(key: key);