AnalysisErrorInfo constructor

AnalysisErrorInfo({
  1. required String filePath,
  2. required String errorMessage,
})

Creates a new AnalysisErrorInfo instance with the given filePath and errorMessage.

Implementation

AnalysisErrorInfo({
  required this.filePath,
  required this.errorMessage,
});