NiceDesktopIcon constructor

const NiceDesktopIcon({
  1. required String key,
  2. required String label,
  3. required IconData icon,
  4. NiceDesktopIconType type = NiceDesktopIconType.app,
  5. int? gridCol,
  6. int? gridRow,
})

Implementation

const NiceDesktopIcon({
  required this.key,
  required this.label,
  required this.icon,
  this.type = NiceDesktopIconType.app,
  this.gridCol,
  this.gridRow,
});