BottomNavigationBarTheme constructor

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

Constructs a bottom navigation bar theme that configures all descendant BottomNavigationBar widgets.

Implementation

const BottomNavigationBarTheme({
  super.key,
  required this.data,
  required super.child,
});