ExistingImport.fromJson constructor

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

Implementation

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