ProfileModel constructor
ProfileModel({
- int? id,
- String? firstName,
- String? lastName,
- String? middleName,
- String? phone,
- String? profilePhoto,
- bool? isWorking,
- num? balance,
- num? unseenNotificationCount,
- bool? passedTest,
- bool? visitedOffice,
- bool? myId,
- int? equipmentId,
- bool? commissionerIsSet,
- bool? selfEmploymentStatusSet,
- bool? isBlocked,
- DateTime? blockedTill,
- bool? drivingLicenseUploaded,
- bool? drivingLicenseApproved,
- String? email,
- List<
int> ? seenHints, - StatisticModel? stats,
- num? averageRating,
- num? orderCount,
- num? medalLevel,
- num? activity,
- 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,
});