BottomBarItem constructor

BottomBarItem({
  1. required String imagePath,
  2. required String label,
  3. required String url,
  4. bool isNetwork = false,
})

Implementation

BottomBarItem({
  required this.imagePath,
  required this.label,
  required this.url,
  this.isNetwork = false,
});