copyWithWrapped method
Implementation
WebApiModulesAgentOrderVerifyManualSortItemsResponse copyWithWrapped({
Wrapped<int?>? status,
Wrapped<bool?>? success,
Wrapped<String?>? msg,
Wrapped<List<WebApiModulesAgentOrderSortingCorruptionItem>?>?
itemsWithSortingCorruption,
}) {
return WebApiModulesAgentOrderVerifyManualSortItemsResponse(
status: (status != null ? status.value : this.status),
success: (success != null ? success.value : this.success),
msg: (msg != null ? msg.value : this.msg),
itemsWithSortingCorruption: (itemsWithSortingCorruption != null
? itemsWithSortingCorruption.value
: this.itemsWithSortingCorruption),
);
}