BottomNavBar constructor
BottomNavBar({})
Implementation
BottomNavBar({
Color? activeColor,
Color? backgroundColor,
GapLocation? gapLocation,
double height = 64,
IndexedWidgetBuilder? itemBuilder,
List<BottomNavItem>? items,
Key? key,
}) : this._internal(
activeColor: activeColor,
backgroundColor: backgroundColor,
height: height,
gapLocation: gapLocation,
items: items,
itemBuilder: _defaultBuilder(items),
key: key,
);