SourceEdit.fromJson constructor

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

Implementation

factory SourceEdit.fromJson(
    JsonDecoder jsonDecoder, String jsonPath, Object? json) {
  json ??= {};
  if (json is Map) {
    int offset;
    if (json.containsKey('offset')) {
      offset = jsonDecoder.decodeInt('$jsonPath.offset', json['offset']);
    } else {
      throw jsonDecoder.mismatch(jsonPath, 'offset');
    }
    int length;
    if (json.containsKey('length')) {
      length = jsonDecoder.decodeInt('$jsonPath.length', json['length']);
    } else {
      throw jsonDecoder.mismatch(jsonPath, 'length');
    }
    String replacement;
    if (json.containsKey('replacement')) {
      replacement = jsonDecoder.decodeString(
          '$jsonPath.replacement', json['replacement']);
    } else {
      throw jsonDecoder.mismatch(jsonPath, 'replacement');
    }
    String? id;
    if (json.containsKey('id')) {
      id = jsonDecoder.decodeString('$jsonPath.id', json['id']);
    }
    return SourceEdit(offset, length, replacement, id: id);
  } else {
    throw jsonDecoder.mismatch(jsonPath, 'SourceEdit', json);
  }
}