UserModel constructor

UserModel({
  1. int? id,
  2. String? firebaseId,
  3. String? tokenFirebase,
  4. String? token,
  5. String? uniqueId,
  6. String? firstName,
  7. String? lastName,
  8. String? displayName,
  9. String? infoName,
  10. String? phone,
  11. String? email,
  12. String? comment,
  13. String? thumbnail = '',
  14. int? blurPicture = 0,
  15. int? reliability = 0,
  16. int? createdAt = 0,
  17. int? allowGeolocation = 0,
  18. int? signedAt = 0,
  19. List? fCMTokens,
  20. int? isTmpEmail,
  21. int? sellerStatus,
  22. String? sellerQrCode,
  23. int? timeBeforeStartTracking = 0,
  24. String? interfaceLanguageCode,
  25. dynamic distanceBeforeStartTracking,
  26. String? dateFormat,
  27. String? timeFormat,
  28. List<PaymentBillingInfo>? billingInfos,
})

Implementation

UserModel({
  this.id,
  this.firebaseId,
  this.tokenFirebase,
  this.token,
  this.uniqueId,
  this.firstName,
  this.lastName,
  this.displayName,
  this.infoName,
  this.phone,
  this.email,
  this.comment,
  this.thumbnail = '',
  this.blurPicture = 0,
  this.reliability = 0,
  this.createdAt = 0,
  this.allowGeolocation = 0,
  this.signedAt = 0,
  this.fCMTokens,
  this.isTmpEmail,
  this.sellerStatus,
  this.sellerQrCode,
  this.timeBeforeStartTracking = 0,
  this.interfaceLanguageCode,
  this.distanceBeforeStartTracking,
  this.dateFormat,
  this.timeFormat,
  this.billingInfos,
});