NiceTaskbarItem constructor

const NiceTaskbarItem({
  1. required String key,
  2. required String label,
  3. IconData? icon,
  4. int? badge,
  5. bool active = false,
  6. bool minimized = false,
})

Implementation

const NiceTaskbarItem({
  required this.key,
  required this.label,
  this.icon,
  this.badge,
  this.active = false,
  this.minimized = false,
});