CleanResult constructor

CleanResult({
  1. List<String> deletedPaths = const [],
  2. Map<String, String> failedPaths = const {},
  3. int reclaimedSize = 0,
})

Implementation

CleanResult({
  this.deletedPaths = const [],
  this.failedPaths = const {},
  this.reclaimedSize = 0,
});