EaseNavBarItem constructor

EaseNavBarItem({
  1. required Icon icon,
  2. required Text title,
  3. Color activeColor = const Color(0xff272e81),
  4. Color inactiveColor = const Color(0xff9496c1),
})

Implementation

EaseNavBarItem({
  required this.icon,
  required this.title,
  this.activeColor = const Color(0xff272e81),
  this.inactiveColor = const Color(0xff9496c1),
});