ResponsiveBottomBar constructor

const ResponsiveBottomBar({
  1. required Function onTap,
  2. Key? key,
  3. required List<BottomBarItem> items,
  4. required int currentIndex,
})

Implementation

const ResponsiveBottomBar(
    {required this.onTap,
    Key? key,
    required this.items,
    required this.currentIndex})
    : super(key: key);