EaseTabBar constructor
const
EaseTabBar({})
Implementation
const EaseTabBar(
{Key? key,
required this.child,
this.background = Colors.blue,
required this.iconButtons,
this.colorMenuIconActivated = Colors.blue,
this.colorMenuIconDefault = Colors.white,
this.backgroundMenuIconActivated = Colors.white,
this.backgroundMenuIconDefault = Colors.blue})
: assert(iconButtons.length > 1 && iconButtons.length % 2 == 0),
super(key: key);