AnalysisError constructor

AnalysisError(
  1. AnalysisErrorSeverity severity,
  2. AnalysisErrorType type,
  3. Location location,
  4. String message,
  5. String code, {
  6. String? correction,
  7. String? url,
  8. List<DiagnosticMessage>? contextMessages,
  9. bool? hasFix,
})

Implementation

AnalysisError(
  this.severity,
  this.type,
  this.location,
  this.message,
  this.code, {
  this.correction,
  this.url,
  this.contextMessages,
  this.hasFix,
});