CustomNavBarFourItemOnly constructor

const CustomNavBarFourItemOnly({
  1. Key? key,
  2. void onTap(
    1. int
    )?,
  3. Color? selectedColor,
  4. Color? unSelectedColor,
  5. required IconData iconNav,
  6. required String textNav,
  7. int? currentIndex = 0,
})

Implementation

const CustomNavBarFourItemOnly({
  Key? key,
  this.onTap,
  this.selectedColor,
  this.unSelectedColor,
  required this.iconNav,
  required this.textNav, this.currentIndex =0,
}) : super(key: key);