RegisterRequestModel constructor

RegisterRequestModel({
  1. String? name,
  2. String? email,
  3. String? phone,
  4. String? address,
  5. required String password,
  6. String? username,
  7. String? role,
  8. String? subrole,
  9. String? schoolId,
  10. String? panel,
})

Implementation

RegisterRequestModel({
  this.name,
  this.email,
  this.phone,
  this.address,
  required this.password,
  this.username,
  this.role,
  this.subrole,
  this.schoolId,
  this.panel,
});