ImportedElementSet.fromJson constructor

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

Implementation

factory ImportedElementSet.fromJson(
    JsonDecoder jsonDecoder, String jsonPath, Object? json) {
  json ??= {};
  if (json is Map) {
    List<String> strings;
    if (json.containsKey('strings')) {
      strings = jsonDecoder.decodeList(
          '$jsonPath.strings', json['strings'], jsonDecoder.decodeString);
    } else {
      throw jsonDecoder.mismatch(jsonPath, 'strings');
    }
    List<int> uris;
    if (json.containsKey('uris')) {
      uris = jsonDecoder.decodeList(
          '$jsonPath.uris', json['uris'], jsonDecoder.decodeInt);
    } else {
      throw jsonDecoder.mismatch(jsonPath, 'uris');
    }
    List<int> names;
    if (json.containsKey('names')) {
      names = jsonDecoder.decodeList(
          '$jsonPath.names', json['names'], jsonDecoder.decodeInt);
    } else {
      throw jsonDecoder.mismatch(jsonPath, 'names');
    }
    return ImportedElementSet(strings, uris, names);
  } else {
    throw jsonDecoder.mismatch(jsonPath, 'ImportedElementSet', json);
  }
}