Config constructor

const Config({
  1. required String nick,
  2. String? username,
  3. String? realname,
  4. String? password,
  5. SaslCredentials? sasl,
  6. int? retention,
  7. List<String>? alt_nicks,
})

Implementation

const Config({
  required this.nick,
  this.username,
  this.realname,
  this.password,
  this.sasl,
  this.retention,
  this.alt_nicks,
});