SmartPageBottomNavigationBar constructor

SmartPageBottomNavigationBar({
  1. Key? key,
  2. required SmartPageController controller,
  3. required List<BottomIcon> children,
  4. SmartPageBottomNavigationOptions? options,
  5. bool onTap(
    1. int index
    )?,
})

Implementation

SmartPageBottomNavigationBar({
  Key? key,
  required this.controller,
  required this.children,
  this.options,
  this.onTap,
}) : super(key: key);