copyWithWrapped method

WebApiModulesHomeControlsCompanyContactSortCompanyContactRequest copyWithWrapped({
  1. Wrapped<int?>? startAtIndex,
  2. Wrapped<List<String>?>? companyContactIds,
})

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),
  );
}