ValidationResult constructor

const ValidationResult({
  1. required bool success,
  2. required List<ValidationError> errors,
  3. required List<ValidationWarning> warnings,
  4. required String filePath,
  5. required PluginFileType fileType,
})

Implementation

const ValidationResult({
  required this.success,
  required this.errors,
  required this.warnings,
  required this.filePath,
  required this.fileType,
});