AnalysisHighlightsParams.fromJson constructor

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

Implementation

factory AnalysisHighlightsParams.fromJson(
    JsonDecoder jsonDecoder, String jsonPath, Object? json) {
  json ??= {};
  if (json is Map) {
    String file;
    if (json.containsKey('file')) {
      file = jsonDecoder.decodeString('$jsonPath.file', json['file']);
    } else {
      throw jsonDecoder.mismatch(jsonPath, 'file');
    }
    List<HighlightRegion> regions;
    if (json.containsKey('regions')) {
      regions = jsonDecoder.decodeList(
          '$jsonPath.regions',
          json['regions'],
          (String jsonPath, Object? json) =>
              HighlightRegion.fromJson(jsonDecoder, jsonPath, json));
    } else {
      throw jsonDecoder.mismatch(jsonPath, 'regions');
    }
    return AnalysisHighlightsParams(file, regions);
  } else {
    throw jsonDecoder.mismatch(jsonPath, 'analysis.highlights params', json);
  }
}