ItemConfig constructor

const ItemConfig({
  1. Color? selectedItemColor,
  2. Color? iconBagroundColor,
  3. Color? iconColor,
  4. Color? textColor,
})

Creates a configuration for navigation item styling.

All parameters are optional and will fall back to the default theme colors if not specified.

Implementation

const ItemConfig({
  this.selectedItemColor,
  this.iconBagroundColor,
  this.iconColor,
  this.textColor,
});