copyWith method
WebApiLogicAppFuncSessionUser
copyWith({
- String? webusersid,
- String? usersid,
- String? contactid,
- String? usertype,
- String? email,
- String? emailapp,
- bool? addsignaturetodraft,
- String? fullname,
- String? name,
- int? browsedefaultrows,
- int? griddefaultrows,
- String? applicationtheme,
- String? locale,
- String? locationid,
- String? location,
- String? languageid,
- String? language,
- 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,
- int? creditCardPinPadId,
- String? creditCardPinPad,
Implementation
WebApiLogicAppFuncSessionUser copyWith(
{String? webusersid,
String? usersid,
String? contactid,
String? usertype,
String? email,
String? emailapp,
bool? addsignaturetodraft,
String? fullname,
String? name,
int? browsedefaultrows,
int? griddefaultrows,
String? applicationtheme,
String? locale,
String? locationid,
String? location,
String? languageid,
String? language,
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,
int? creditCardPinPadId,
String? creditCardPinPad}) {
return WebApiLogicAppFuncSessionUser(
webusersid: webusersid ?? this.webusersid,
usersid: usersid ?? this.usersid,
contactid: contactid ?? this.contactid,
usertype: usertype ?? this.usertype,
email: email ?? this.email,
emailapp: emailapp ?? this.emailapp,
addsignaturetodraft: addsignaturetodraft ?? this.addsignaturetodraft,
fullname: fullname ?? this.fullname,
name: name ?? this.name,
browsedefaultrows: browsedefaultrows ?? this.browsedefaultrows,
griddefaultrows: griddefaultrows ?? this.griddefaultrows,
applicationtheme: applicationtheme ?? this.applicationtheme,
locale: locale ?? this.locale,
locationid: locationid ?? this.locationid,
location: location ?? this.location,
languageid: languageid ?? this.languageid,
language: language ?? this.language,
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,
creditCardPinPadId: creditCardPinPadId ?? this.creditCardPinPadId,
creditCardPinPad: creditCardPinPad ?? this.creditCardPinPad);
}