EditGetFixesResult.fromJson constructor

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

Implementation

factory EditGetFixesResult.fromJson(
    JsonDecoder jsonDecoder, String jsonPath, Object? json) {
  json ??= {};
  if (json is Map) {
    List<AnalysisErrorFixes> fixes;
    if (json.containsKey('fixes')) {
      fixes = jsonDecoder.decodeList(
          '$jsonPath.fixes',
          json['fixes'],
          (String jsonPath, Object? json) =>
              AnalysisErrorFixes.fromJson(jsonDecoder, jsonPath, json));
    } else {
      throw jsonDecoder.mismatch(jsonPath, 'fixes');
    }
    return EditGetFixesResult(fixes);
  } else {
    throw jsonDecoder.mismatch(jsonPath, 'edit.getFixes result', json);
  }
}