DefaultBottomBarController constructor

DefaultBottomBarController({
  1. Key? key,
  2. required Widget child,
})

Creates a default BottomBarController for the given child widget

Implementation

DefaultBottomBarController({
  Key? key,
  required this.child,
}) : super(key: key);