BottomNavigationBarThemeModifier constructor

const BottomNavigationBarThemeModifier({
  1. Key? key,
  2. Widget? child,
  3. Key? modifierKey,
  4. 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,
});