UserBean constructor

UserBean({
  1. int? id,
  2. int? staffId,
  3. int? fromUserId,
  4. int? fromStaffId,
  5. int? region,
  6. int? rmId,
  7. int? createTime,
  8. int? updateTime,
  9. int? status,
  10. int? isActive,
  11. int? cc,
  12. String? mobile,
  13. String? name,
  14. String? password,
  15. String? salt,
  16. int? score,
  17. String? label,
  18. int? gender,
  19. int? age,
})

Implementation

UserBean({
  this.id,
  this.staffId,
  this.fromUserId,
  this.fromStaffId,
  this.region,
  this.rmId,
  this.createTime,
  this.updateTime,
  this.status,
  this.isActive,
  this.cc,
  this.mobile,
  this.name,
  this.password,
  this.salt,
  this.score,
  this.label,
  this.gender,
  this.age,
});