ServerGetVersionResult.fromJson constructor
ServerGetVersionResult.fromJson(
- JsonDecoder jsonDecoder,
- String jsonPath,
- Object? json
)
Implementation
factory ServerGetVersionResult.fromJson(
JsonDecoder jsonDecoder, String jsonPath, Object? json) {
json ??= {};
if (json is Map) {
String version;
if (json.containsKey('version')) {
version =
jsonDecoder.decodeString('$jsonPath.version', json['version']);
} else {
throw jsonDecoder.mismatch(jsonPath, 'version');
}
return ServerGetVersionResult(version);
} else {
throw jsonDecoder.mismatch(jsonPath, 'server.getVersion result', json);
}
}