hget abstract method

Future<String?> hget(
  1. String key,
  2. String field
)

Gets the value of field in the hash stored at key.

Returns null if the field or key does not exist. Throws a ValkeyServerException if the key holds a non-hash value.

Implementation

Future<String?> hget(String key, String field);