BottomNavigationTheme constructor

const BottomNavigationTheme({
  1. Key? key,
  2. required Widget child,
  3. required BottomNavigationThemeData data,
})

Creates a button theme that controls the configurations for BottomNavigation.

Implementation

const BottomNavigationTheme({
  Key? key,
  required Widget child,
  required this.data,
}) : super(key: key, child: child);