toJson method
Returns a JSON presentation of the object.
Implementation
@override
Map<String, Object> toJson({ClientUriConverter? clientUriConverter}) {
var result = <String, Object>{};
result['byteStorePath'] =
clientUriConverter?.toClientFilePath(byteStorePath) ?? byteStorePath;
result['sdkPath'] =
clientUriConverter?.toClientFilePath(sdkPath) ?? sdkPath;
result['version'] = version;
return result;
}