User constructor

User({
  1. List<String>? databaseRoles,
  2. String? name,
  3. String? password,
  4. String? userType,
})

Implementation

User({
  this.databaseRoles,
  this.name,
  this.password,
  this.userType,
});