hGet method

  1. @override
Future hGet(
  1. String key,
  2. String field
)
override

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));