Issue constructor

Issue({
  1. bool? hasFix,
  2. int? offset = 0,
  3. int? length = 0,
  4. int? line,
  5. int? column,
  6. int? endLine,
  7. int? endColumn,
  8. String? message,
  9. String? code,
  10. String? correction,
  11. String? comment,
  12. String? replacement,
  13. AnalysisErrorSeverity? errorSeverity,
  14. AnalysisErrorType? errorType,
  15. String? filePath,
})

Implementation

Issue({
  this.hasFix,
  this.offset = 0,
  this.length = 0,
  this.line,
  this.column,
  this.endLine,
  this.endColumn,
  this.message,
  this.code,
  this.correction,
  this.comment,
  this.replacement,
  this.errorSeverity,
  this.errorType,
  this.filePath,
});