UserNew constructor

UserNew({
  1. String? name,
  2. String? email,
  3. String? password,
  4. String? username,
})

Implementation

UserNew({
  this.name,
  this.email,
  this.password,
  this.username,
});