MoltenTab constructor

MoltenTab({
  1. required Widget icon,
  2. Color? selectedColor,
  3. Widget? title,
  4. Color? unselectedColor,
})

This represents each tab in the navigation bar.

icon must not be null

Implementation

MoltenTab({
  required this.icon,
  this.selectedColor,
  this.title,
  this.unselectedColor,
});