CreateUserResponseModel constructor

CreateUserResponseModel(
  1. String userId,
  2. String username,
  3. String countryCode,
  4. String companyName,
  5. String email,
  6. String phoneNumber,
  7. String gender,
)

Implementation

CreateUserResponseModel(
  this.userId,
  this.username,
  this.countryCode,
  this.companyName,
  this.email,
  this.phoneNumber,
  this.gender,
);