zscan method
zscan
Implementation
Future<Zscan> zscan(String key, int cursor,
{String? pattern, int? count}) async {
Object result = await _runWithRetryNew(() async {
return (await RespCommandsTier1(_client!)
.zscan(key, cursor, pattern: pattern, count: count));
});
return Zscan.fromResult(result);
}