VentBottomBar<T> constructor

const VentBottomBar<T>({
  1. Key? key,
  2. required List<VentBottomBarItem<T>> items,
  3. required void onPressed(
    1. VentBottomBarItem<T>? item
    ),
  4. VentBottomBarItem<T>? initialItem,
  5. double height = 66,
  6. VentBottomBarDecoration decoration = const VentBottomBarDecoration(),
})

Implementation

const VentBottomBar({
  super.key,
  required this.items,
  required this.onPressed,
  this.initialItem,
  this.height = 66,
  this.decoration = const VentBottomBarDecoration(),
});