ProjectSize constructor

const ProjectSize({
  1. required int fileCount,
  2. required int dirCount,
  3. required int totalBytes,
  4. Map<String, int> byExtension = const {},
})

Implementation

const ProjectSize({
  required this.fileCount,
  required this.dirCount,
  required this.totalBytes,
  this.byExtension = const {},
});