SignUpRequest constructor

SignUpRequest({
  1. String? email,
  2. String? password,
  3. String? passwordConfirmation,
  4. String? fullName,
  5. String? deviceType,
  6. String? deviceToken,
  7. String? platform,
  8. String? phone,
})

Implementation

SignUpRequest({
  this.email,
  this.password,
  this.passwordConfirmation,
  this.fullName,
  this.deviceType,
  this.deviceToken,
  this.platform,
  this.phone,
});