BulkFix.fromJson constructor

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

Implementation

factory BulkFix.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');
    }
    List<BulkFixDetail> fixes;
    if (json.containsKey('fixes')) {
      fixes = jsonDecoder.decodeList(
          '$jsonPath.fixes',
          json['fixes'],
          (String jsonPath, Object? json) =>
              BulkFixDetail.fromJson(jsonDecoder, jsonPath, json));
    } else {
      throw jsonDecoder.mismatch(jsonPath, 'fixes');
    }
    return BulkFix(path, fixes);
  } else {
    throw jsonDecoder.mismatch(jsonPath, 'BulkFix', json);
  }
}