SideItem constructor

const SideItem({
  1. Key? key,
  2. bool border = false,
  3. required IconData icon,
  4. double size = 26,
  5. String message = "",
  6. Color color = Colors.white,
  7. Color textColor = Colors.white,
  8. Function? onTabIcon,
})

Implementation

const SideItem({
  Key? key,
  this.border = false,
  required this.icon,
  this.size = 26,
  this.message = "",
  this.color = Colors.white,
  this.textColor = Colors.white,
  this.onTabIcon,
}) : super(key: key);