Material2BottomBarTheme constructor

Material2BottomBarTheme({
  1. Color? bgColor,
  2. double? height,
  3. Color? selectedItemColor,
  4. Color? unselectedItemColor,
  5. BottomNavigationBarType? type,
  6. IconThemeData? iconThemeData,
  7. double? elevation,
  8. double selectedFontSize = 14.0,
  9. double unselectedFontSize = 12.0,
  10. double iconSize = 24,
})

Implementation

Material2BottomBarTheme({
  super.bgColor,
  super.height,
  this.selectedItemColor,
  this.unselectedItemColor,
  this.type,
  this.iconThemeData,
  this.elevation,
  this.selectedFontSize = 14.0,
  this.unselectedFontSize = 12.0,
  this.iconSize = 24,
});