CleanupTarget constructor

const CleanupTarget({
  1. required String id,
  2. required String label,
  3. required String path,
  4. required CleanupCategory category,
  5. bool destructive = true,
  6. bool contentsOnly = false,
  7. List<String>? command,
})

Implementation

const CleanupTarget({
  required this.id,
  required this.label,
  required this.path,
  required this.category,
  this.destructive = true,
  this.contentsOnly = false,
  this.command,
});