tabIconTint property
      
      Color?
      get
      tabIconTint
      
    
    
    
Implementation
Color? get tabIconTint {
  return tabIconTintState?.fromController(this) ??
      _tabIconTint ??
      tabContentColor;
}
      
      set
      tabIconTint
      (Color? value) 
      
    
    
    
Implementation
set tabIconTint(Color? value) => _tabIconTint = value;