TabData constructor
TabData({
- required IconData icon,
- required String title,
- void onClick()?,
- double iconSize = 30,
- double fontSize = 12,
- FontWeight fontWeight = FontWeight.normal,
Implementation
TabData({
required this.icon,
required this.title,
this.onClick,
this.iconSize = 30,
this.fontSize = 12,
this.fontWeight = FontWeight.normal,
});