AnalysisErrorType.fromJson constructor

AnalysisErrorType.fromJson(
  1. JsonDecoder jsonDecoder,
  2. String jsonPath,
  3. Object? json
)

Implementation

factory AnalysisErrorType.fromJson(
    JsonDecoder jsonDecoder, String jsonPath, Object? json) {
  if (json is String) {
    try {
      return AnalysisErrorType(json);
    } catch (_) {
      // Fall through
    }
  }
  throw jsonDecoder.mismatch(jsonPath, 'AnalysisErrorType', json);
}