RedisStoragePlug constructor

RedisStoragePlug({
  1. required String host,
  2. required int port,
  3. String? password,
})

Creates a new RedisStoragePlug with the given configuration.

Implementation

RedisStoragePlug({
  required this.host,
  required this.port,
  this.password,
});