EditGetPostfixCompletionParams.fromJson constructor
EditGetPostfixCompletionParams.fromJson(
- JsonDecoder jsonDecoder,
- String jsonPath,
- Object? json
)
Implementation
factory EditGetPostfixCompletionParams.fromJson(
JsonDecoder jsonDecoder, String jsonPath, Object? json) {
json ??= {};
if (json is Map) {
String file;
if (json.containsKey('file')) {
file = jsonDecoder.decodeString('$jsonPath.file', json['file']);
} else {
throw jsonDecoder.mismatch(jsonPath, 'file');
}
String key;
if (json.containsKey('key')) {
key = jsonDecoder.decodeString('$jsonPath.key', json['key']);
} else {
throw jsonDecoder.mismatch(jsonPath, 'key');
}
int offset;
if (json.containsKey('offset')) {
offset = jsonDecoder.decodeInt('$jsonPath.offset', json['offset']);
} else {
throw jsonDecoder.mismatch(jsonPath, 'offset');
}
return EditGetPostfixCompletionParams(file, key, offset);
} else {
throw jsonDecoder.mismatch(
jsonPath, 'edit.getPostfixCompletion params', json);
}
}