KytheGetKytheEntriesResult.fromJson constructor

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

Implementation

factory KytheGetKytheEntriesResult.fromJson(
    JsonDecoder jsonDecoder, String jsonPath, Object? json) {
  json ??= {};
  if (json is Map) {
    List<KytheEntry> entries;
    if (json.containsKey('entries')) {
      entries = jsonDecoder.decodeList(
          '$jsonPath.entries',
          json['entries'],
          (String jsonPath, Object? json) =>
              KytheEntry.fromJson(jsonDecoder, jsonPath, json));
    } else {
      throw jsonDecoder.mismatch(jsonPath, 'entries');
    }
    List<String> files;
    if (json.containsKey('files')) {
      files = jsonDecoder.decodeList(
          '$jsonPath.files', json['files'], jsonDecoder.decodeString);
    } else {
      throw jsonDecoder.mismatch(jsonPath, 'files');
    }
    return KytheGetKytheEntriesResult(entries, files);
  } else {
    throw jsonDecoder.mismatch(
        jsonPath, 'kythe.getKytheEntries result', json);
  }
}