SearchResultsParams.fromJson constructor

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

Implementation

factory SearchResultsParams.fromJson(
    JsonDecoder jsonDecoder, String jsonPath, Object? json) {
  json ??= {};
  if (json is Map) {
    String id;
    if (json.containsKey('id')) {
      id = jsonDecoder.decodeString('$jsonPath.id', json['id']);
    } else {
      throw jsonDecoder.mismatch(jsonPath, 'id');
    }
    List<SearchResult> results;
    if (json.containsKey('results')) {
      results = jsonDecoder.decodeList(
          '$jsonPath.results',
          json['results'],
          (String jsonPath, Object? json) =>
              SearchResult.fromJson(jsonDecoder, jsonPath, json));
    } else {
      throw jsonDecoder.mismatch(jsonPath, 'results');
    }
    bool isLast;
    if (json.containsKey('isLast')) {
      isLast = jsonDecoder.decodeBool('$jsonPath.isLast', json['isLast']);
    } else {
      throw jsonDecoder.mismatch(jsonPath, 'isLast');
    }
    return SearchResultsParams(id, results, isLast);
  } else {
    throw jsonDecoder.mismatch(jsonPath, 'search.results params', json);
  }
}