ProfileModel constructor

ProfileModel({
  1. int? id,
  2. String? firstName,
  3. String? lastName,
  4. String? middleName,
  5. String? phone,
  6. String? profilePhoto,
  7. bool? isWorking,
  8. num? balance,
  9. num? unseenNotificationCount,
  10. bool? passedTest,
  11. bool? visitedOffice,
  12. bool? myId,
  13. int? equipmentId,
  14. bool? commissionerIsSet,
  15. bool? selfEmploymentStatusSet,
  16. bool? isBlocked,
  17. DateTime? blockedTill,
  18. bool? drivingLicenseUploaded,
  19. bool? drivingLicenseApproved,
  20. String? email,
  21. List<int>? seenHints,
  22. StatisticModel? stats,
  23. num? averageRating,
  24. num? orderCount,
  25. num? medalLevel,
  26. num? activity,
  27. String? lockerSyncValue,
})

Implementation

ProfileModel({
  this.id,
  this.firstName,
  this.lastName,
  this.middleName,
  this.phone,
  this.profilePhoto,
  this.isWorking,
  this.balance,
  this.unseenNotificationCount,
  this.passedTest,
  this.visitedOffice,
  this.myId,
  this.equipmentId,
  this.commissionerIsSet,
  this.selfEmploymentStatusSet,
  this.isBlocked,
  this.blockedTill,
  this.drivingLicenseUploaded,
  this.drivingLicenseApproved,
  this.email,
  this.seenHints,
  this.stats,
  this.averageRating,
  this.orderCount,
  this.medalLevel,
  this.activity,
  this.lockerSyncValue,
});