ApplicationUser constructor

ApplicationUser({
  1. int? applicationUserId,
  2. String? fullName,
  3. String? name,
  4. String? email,
  5. String? password,
  6. bool? activatedCode,
  7. bool? isActive,
  8. DateTime? createdAt,
  9. DateTime? updatedAt,
  10. String? permissions,
  11. String? accessLevel,
  12. String? notes,
  13. String? groupAccessRight,
  14. String? token,
  15. int? accessRights,
  16. String? roleAccessRights,
  17. bool? settings,
  18. bool? generalLedger,
  19. bool? accountReceivable,
  20. bool? bank,
  21. bool? department,
  22. bool? accountPayable,
  23. bool? stock,
  24. bool? saleOrder,
  25. bool? purchaseOrder,
  26. bool? pos,
  27. bool? hrd,
  28. bool? warehousing,
  29. bool? service,
  30. bool? logistic,
  31. bool? task,
  32. bool? asset,
})

Implementation

ApplicationUser({
  this.applicationUserId,
  this.fullName,
  this.name,
  this.email,
  this.password,
  this.activatedCode,
  this.isActive,
  this.createdAt,
  this.updatedAt,
  this.permissions,
  this.accessLevel,
  this.notes,
  this.groupAccessRight,
  this.token,
  this.accessRights,
  this.roleAccessRights,
  this.settings,
  this.generalLedger,
  this.accountReceivable,
  this.bank,
  this.department,
  this.accountPayable,
  this.stock,
  this.saleOrder,
  this.purchaseOrder,
  this.pos,
  this.hrd,
  this.warehousing,
  this.service,
  this.logistic,
  this.task,
  this.asset,
});