SearchGetTypeHierarchyParams.fromJson constructor

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

Implementation

factory SearchGetTypeHierarchyParams.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');
    }
    int offset;
    if (json.containsKey('offset')) {
      offset = jsonDecoder.decodeInt('$jsonPath.offset', json['offset']);
    } else {
      throw jsonDecoder.mismatch(jsonPath, 'offset');
    }
    bool? superOnly;
    if (json.containsKey('superOnly')) {
      superOnly =
          jsonDecoder.decodeBool('$jsonPath.superOnly', json['superOnly']);
    }
    return SearchGetTypeHierarchyParams(file, offset, superOnly: superOnly);
  } else {
    throw jsonDecoder.mismatch(
        jsonPath, 'search.getTypeHierarchy params', json);
  }
}