URegisterParams constructor

URegisterParams({
  1. required String userName,
  2. required String password,
  3. required List<int> tags,
  4. String? email,
  5. String? phoneNumber,
  6. String? firstName,
  7. String? lastName,
})

Implementation

URegisterParams({
  required this.userName,
  required this.password,
  required this.tags,
  this.email,
  this.phoneNumber,
  this.firstName,
  this.lastName,
});