ImportedElements.fromJson constructor

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

Implementation

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