CupertinoBottomBarTheme constructor

CupertinoBottomBarTheme({
  1. Color? bgColor,
  2. double? height,
  3. Color? selectedItemColor,
  4. Color? unselectedItemColor,
  5. BottomNavigationBarType? type,
  6. Border? border,
  7. double iconSize = 24,
})

Implementation

CupertinoBottomBarTheme({
  super.bgColor,
  super.height,
  this.selectedItemColor,
  this.unselectedItemColor,
  this.type,
  this.border,
  this.iconSize = 24,
});