ServerGetVersionResult.fromJson constructor

ServerGetVersionResult.fromJson(
  1. JsonDecoder jsonDecoder,
  2. String jsonPath,
  3. 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);
  }
}