copyWith method
Implementation
WebApiLogicAppFuncSystemSettingsResponse copyWith(
{bool? allowDeleteInvoices,
bool? allowInvoiceDateChange,
bool? enableReceipts,
bool? enablePayments,
bool? shareDealsAcrossOfficeLocations,
String? systemName,
String? companyName,
bool? isVendorNumberAssignedByUser}) {
return WebApiLogicAppFuncSystemSettingsResponse(
allowDeleteInvoices: allowDeleteInvoices ?? this.allowDeleteInvoices,
allowInvoiceDateChange:
allowInvoiceDateChange ?? this.allowInvoiceDateChange,
enableReceipts: enableReceipts ?? this.enableReceipts,
enablePayments: enablePayments ?? this.enablePayments,
shareDealsAcrossOfficeLocations: shareDealsAcrossOfficeLocations ??
this.shareDealsAcrossOfficeLocations,
systemName: systemName ?? this.systemName,
companyName: companyName ?? this.companyName,
isVendorNumberAssignedByUser:
isVendorNumberAssignedByUser ?? this.isVendorNumberAssignedByUser);
}