BottomBarItem constructor

BottomBarItem({
  1. String? text,
  2. String? image,
  3. IconData? iconData,
})

Implementation

BottomBarItem({
  this.text,
  this.image,
  this.iconData,
}) : assert(image != null || iconData != null);