smembers abstract method

Future<List<String?>> smembers(
  1. String key
)

Returns all members of the set stored at key.

Returns an empty list if the key does not exist. Throws a ValkeyServerException if the key holds a non-set value.

Implementation

Future<List<String?>> smembers(String key);