RedisController constructor

RedisController({
  1. required String host,
  2. required int port,
  3. required bool requireSsl,
  4. String? user,
  5. String? password,
  6. Duration connectTimeout = const Duration(seconds: 10),
})

Creates a new RedisController with the provided connection details.

Implementation

RedisController({
  required this.host,
  required this.port,
  required this.requireSsl,
  this.user,
  this.password,
  this.connectTimeout = const Duration(seconds: 10),
});