TabData constructor

TabData({
  1. required IconData icon,
  2. required String title,
  3. void onClick()?,
  4. double iconSize = 30,
  5. double fontSize = 12,
  6. FontWeight fontWeight = FontWeight.normal,
})

Implementation

TabData({
  required this.icon,
  required this.title,
  this.onClick,
  this.iconSize = 30,
  this.fontSize = 12,
  this.fontWeight = FontWeight.normal,
});