copyWithWrapped method
Implementation
WebApiModulesHomeControlsCompanyContactSortCompanyContactRequest
copyWithWrapped({
Wrapped<int?>? startAtIndex,
Wrapped<List<String>?>? companyContactIds,
}) {
return WebApiModulesHomeControlsCompanyContactSortCompanyContactRequest(
startAtIndex: (startAtIndex != null
? startAtIndex.value
: this.startAtIndex),
companyContactIds: (companyContactIds != null
? companyContactIds.value
: this.companyContactIds),
);
}