BottomNavBarSingle constructor

BottomNavBarSingle({
  1. Key? key,
  2. required String text,
  3. required Function onClick,
})

Implementation

BottomNavBarSingle({
  Key? key,
  required this.text,
  required this.onClick,
}) : super(key: key);