copyWith method

WebApiLogicAppFuncSessionUser copyWith({
  1. String? webusersid,
  2. String? usersid,
  3. String? contactid,
  4. String? usertype,
  5. String? email,
  6. String? fullname,
  7. String? name,
  8. int? browsedefaultrows,
  9. String? applicationtheme,
  10. String? locationid,
  11. String? location,
  12. String? warehouseid,
  13. String? warehouse,
  14. String? departmentid,
  15. String? department,
  16. bool? webadministrator,
  17. int? firstdayofweek,
  18. String? rentalinventorydepartmentid,
  19. String? rentalinventorydepartment,
  20. String? salesinventorydepartmentid,
  21. String? salesinventorydepartment,
  22. String? partsinventorydepartmentid,
  23. String? partsinventorydepartment,
  24. String? transportationinvdepartmentid,
  25. String? transportationinvdepartment,
  26. String? laborinventorydepartmentid,
  27. String? laborinventorydepartment,
  28. String? miscinventorydepartmentid,
  29. String? miscinventorydepartment,
  30. String? spaceinventorydepartmentid,
  31. String? spaceinventorydepartment,
  32. bool? iscrew,
  33. bool? enablecreatecontract,
  34. bool? qsallowapplyallqtyitems,
  35. bool? allowcontractwithexceptions,
  36. bool? canInsertIntoActiveOrder,
})

Implementation

WebApiLogicAppFuncSessionUser copyWith(
    {String? webusersid,
    String? usersid,
    String? contactid,
    String? usertype,
    String? email,
    String? fullname,
    String? name,
    int? browsedefaultrows,
    String? applicationtheme,
    String? locationid,
    String? location,
    String? warehouseid,
    String? warehouse,
    String? departmentid,
    String? department,
    bool? webadministrator,
    int? firstdayofweek,
    String? rentalinventorydepartmentid,
    String? rentalinventorydepartment,
    String? salesinventorydepartmentid,
    String? salesinventorydepartment,
    String? partsinventorydepartmentid,
    String? partsinventorydepartment,
    String? transportationinvdepartmentid,
    String? transportationinvdepartment,
    String? laborinventorydepartmentid,
    String? laborinventorydepartment,
    String? miscinventorydepartmentid,
    String? miscinventorydepartment,
    String? spaceinventorydepartmentid,
    String? spaceinventorydepartment,
    bool? iscrew,
    bool? enablecreatecontract,
    bool? qsallowapplyallqtyitems,
    bool? allowcontractwithexceptions,
    bool? canInsertIntoActiveOrder}) {
  return WebApiLogicAppFuncSessionUser(
      webusersid: webusersid ?? this.webusersid,
      usersid: usersid ?? this.usersid,
      contactid: contactid ?? this.contactid,
      usertype: usertype ?? this.usertype,
      email: email ?? this.email,
      fullname: fullname ?? this.fullname,
      name: name ?? this.name,
      browsedefaultrows: browsedefaultrows ?? this.browsedefaultrows,
      applicationtheme: applicationtheme ?? this.applicationtheme,
      locationid: locationid ?? this.locationid,
      location: location ?? this.location,
      warehouseid: warehouseid ?? this.warehouseid,
      warehouse: warehouse ?? this.warehouse,
      departmentid: departmentid ?? this.departmentid,
      department: department ?? this.department,
      webadministrator: webadministrator ?? this.webadministrator,
      firstdayofweek: firstdayofweek ?? this.firstdayofweek,
      rentalinventorydepartmentid:
          rentalinventorydepartmentid ?? this.rentalinventorydepartmentid,
      rentalinventorydepartment:
          rentalinventorydepartment ?? this.rentalinventorydepartment,
      salesinventorydepartmentid:
          salesinventorydepartmentid ?? this.salesinventorydepartmentid,
      salesinventorydepartment:
          salesinventorydepartment ?? this.salesinventorydepartment,
      partsinventorydepartmentid:
          partsinventorydepartmentid ?? this.partsinventorydepartmentid,
      partsinventorydepartment:
          partsinventorydepartment ?? this.partsinventorydepartment,
      transportationinvdepartmentid:
          transportationinvdepartmentid ?? this.transportationinvdepartmentid,
      transportationinvdepartment:
          transportationinvdepartment ?? this.transportationinvdepartment,
      laborinventorydepartmentid:
          laborinventorydepartmentid ?? this.laborinventorydepartmentid,
      laborinventorydepartment:
          laborinventorydepartment ?? this.laborinventorydepartment,
      miscinventorydepartmentid:
          miscinventorydepartmentid ?? this.miscinventorydepartmentid,
      miscinventorydepartment:
          miscinventorydepartment ?? this.miscinventorydepartment,
      spaceinventorydepartmentid:
          spaceinventorydepartmentid ?? this.spaceinventorydepartmentid,
      spaceinventorydepartment:
          spaceinventorydepartment ?? this.spaceinventorydepartment,
      iscrew: iscrew ?? this.iscrew,
      enablecreatecontract: enablecreatecontract ?? this.enablecreatecontract,
      qsallowapplyallqtyitems:
          qsallowapplyallqtyitems ?? this.qsallowapplyallqtyitems,
      allowcontractwithexceptions:
          allowcontractwithexceptions ?? this.allowcontractwithexceptions,
      canInsertIntoActiveOrder:
          canInsertIntoActiveOrder ?? this.canInsertIntoActiveOrder);
}