SourceFile constructor

const SourceFile({
  1. required String uuid,
  2. required String modSourceInfoUUID,
  3. required String storageUUID,
  4. required String path,
  5. required SourceFileType type,
  6. required List<String> sources,
})

Implementation

const SourceFile({
  required this.uuid,
  required this.modSourceInfoUUID,
  required this.storageUUID,
  required this.path,
  required this.type,
  required this.sources,
});