CreateAccountForm constructor

CreateAccountForm({
  1. String email = '',
  2. String username = '',
  3. String gender = '',
  4. DateTime? dob,
})

Implementation

CreateAccountForm({
  this.email = '',
  this.username = '',
  this.gender = '',
  this.dob,
});