AnalysisSetContextRootsParams.fromJson constructor

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

Implementation

factory AnalysisSetContextRootsParams.fromJson(
    JsonDecoder jsonDecoder, String jsonPath, Object? json) {
  json ??= {};
  if (json is Map) {
    List<ContextRoot> roots;
    if (json.containsKey('roots')) {
      roots = jsonDecoder.decodeList(
          '$jsonPath.roots',
          json['roots'],
          (String jsonPath, Object? json) =>
              ContextRoot.fromJson(jsonDecoder, jsonPath, json));
    } else {
      throw jsonDecoder.mismatch(jsonPath, 'roots');
    }
    return AnalysisSetContextRootsParams(roots);
  } else {
    throw jsonDecoder.mismatch(
        jsonPath, 'analysis.setContextRoots params', json);
  }
}