FlutlyBottomBarItem constructor

FlutlyBottomBarItem({
  1. required FlutlyPage page,
  2. required Widget activePath,
  3. Widget? appBar,
  4. double? appBarHeight,
  5. Widget? deactivePath,
  6. List<FlutlyBottomBarItem>? children,
})

Implementation

FlutlyBottomBarItem({required this.page, required this.activePath, this.appBar, this.appBarHeight, this.deactivePath, this.children}){
  deactivePath ??= activePath;
}