hGet method
Gets the value of field in the hash stored at key.
Returns null if the field or key does not exist.
Throws a KeyscopeServerException if the key holds a non-hash value.
Implementation
@override
Future<dynamic> hGet(String key, String field) =>
_executeOnKey(key, (client) => client.hGet(key, field));