CreateAnAccount constructor

CreateAnAccount({
  1. String? username,
  2. String? email,
  3. RegisterType? registerType,
  4. String? password,
  5. String? confirmPassword,
})

Implementation

CreateAnAccount({
  this.username,
  this.email,
  this.registerType,
  this.password,
  this.confirmPassword,
});