BottomNavigationBarThemeModifier constructor
const
BottomNavigationBarThemeModifier({
- Key? key,
- Widget? child,
- Key? modifierKey,
- required BottomNavigationBarThemeData data,
Constructs a bottom navigation bar theme that configures all descendant BottomNavigationBar widgets.
The data
must not be null.
Implementation
const BottomNavigationBarThemeModifier({
super.key,
super.child,
super.modifierKey,
required this.data,
});