UserOperationModel constructor

UserOperationModel({
  1. required UserOperationSteps step,
  2. String? username,
  3. String? fullName,
  4. String? email,
  5. String? phone,
  6. String? gender,
  7. String? age,
  8. String? birthdate,
  9. String? memberSince,
  10. String? location,
  11. List<String>? segments,
  12. bool? isLogin,
  13. bool? isRegistered,
  14. String? sessionId,
  15. String? userId,
  16. String? device,
  17. String? os,
  18. String? lang,
})

Implementation

UserOperationModel({
  required this.step,
  this.username,
  this.fullName,
  this.email,
  this.phone,
  this.gender,
  this.age,
  this.birthdate,
  this.memberSince,
  this.location,
  this.segments,
  this.isLogin,
  this.isRegistered,
  this.sessionId,
  this.userId,
  this.device,
  this.os,
  this.lang,
});