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