User constructor

User({
  1. bool? consoleAccess,
  2. List<String>? groups,
  3. String? password,
  4. String? username,
})

Implementation

User({
  this.consoleAccess,
  this.groups,
  this.password,
  this.username,
});