ValkeyConnectionSettings constructor

ValkeyConnectionSettings({
  1. String host = '127.0.0.1',
  2. int port = 6379,
  3. String? username,
  4. String? password,
  5. Duration commandTimeout = const Duration(seconds: 10),
})

Implementation

ValkeyConnectionSettings({
  this.host = '127.0.0.1',
  this.port = 6379,
  this.username,
  this.password,
  this.commandTimeout = const Duration(seconds: 10),
});