allKeys method

Future<RedisReply> allKeys()

(KEYS *) - Get all keys

Implementation

Future<RedisReply> allKeys() async {
  return keys('*');
}