hvals method
Returns all values in the hash stored at key.
List of values in the hash, or an empty list when key does not exist.
Implementation
Future<List<String?>> hvals(String key) async {
final result = _getArray(await _execCmd(['HVALS', key]));
if (result != null) {
return result.map((e) => _getBulkString(e)).toList(growable: false);
}
return [];
}