Issue constructor

const Issue({
  1. required String ruleId,
  2. required String category,
  3. required Severity severity,
  4. required String message,
  5. required String filePath,
  6. required int line,
  7. required int column,
  8. String? codeSnippet,
  9. String? suggestion,
})

Implementation

const Issue({
  required this.ruleId,
  required this.category,
  required this.severity,
  required this.message,
  required this.filePath,
  required this.line,
  required this.column,
  this.codeSnippet,
  this.suggestion,
});