FancyBottomNavigation constructor
FancyBottomNavigation({})
Implementation
FancyBottomNavigation(
{required this.tabs,
required this.onTabChangedListener,
this.key,
this.initialSelection = 0,
this.circleColor,
this.activeIconColor,
this.inactiveIconColor,
this.textColor,
this.barBackgroundColor})
: assert(onTabChangedListener != null),
assert(tabs != null),
assert(tabs.length > 1 && tabs.length < 5);