CreateUserRequestModel constructor

CreateUserRequestModel(
  1. String username,
  2. String accountName,
  3. String countryCode,
  4. String companyName,
  5. String email,
  6. String password,
  7. String phoneNumber,
  8. String? referralCode,
)

Implementation

CreateUserRequestModel(
  this.username,
  this.accountName,
  this.countryCode,
  this.companyName,
  this.email,
  this.password,
  this.phoneNumber,
  this.referralCode,
);