members method

Future<RedisReply> members(
  1. String key
)

SMEMBERS - Gets the members of a Set

Implementation

Future<RedisReply> members(String key) async {
  return command('SMEMBERS', [key]);
}