FileInfo constructor

const FileInfo({
  1. required String path,
  2. required String relativePath,
  3. required int sizeBytes,
  4. required DateTime lastModified,
  5. required String content,
  6. bool wasIgnored = false,
  7. String? ignoreReason,
})

Implementation

const FileInfo({
  required this.path,
  required this.relativePath,
  required this.sizeBytes,
  required this.lastModified,
  required this.content,
  this.wasIgnored = false,
  this.ignoreReason,
});