NavigationItem constructor

const NavigationItem({
  1. Key? key,
  2. IconData? iconData,
  3. required String title,
  4. bool isCondensed = false,
  5. String? route,
  6. dynamic onTap(
    1. String route
    )?,
  7. Color? activeItemColor,
  8. Color? inactiveItemColor,
  9. int? maxLines,
})

Implementation

const NavigationItem({
  Key? key,
  this.iconData,
  required this.title,
  this.isCondensed = false,
  this.route,
  this.onTap,
  this.activeItemColor,
  this.inactiveItemColor,
  this.maxLines,
}) : super(key: key);