hget method
hget
Implementation
Future<String?> hget(String key, String field) async {
Object result = await _runWithRetryNew(() async {
return (await RespCommandsTier1(_client!).hget(key, field));
});
if (result is RespType2<dynamic>) {
return result.toSimpleString().payload;
}
return (result as RespType3<dynamic>).toSimpleString().payload;
}