copyWithWrapped method
Implementation
WebApiModulesUtilitiesReceiptProcessBatchReceiptProcessBatchResponse
copyWithWrapped(
{Wrapped<
WebApiModulesUtilitiesReceiptProcessBatchReceiptProcessBatch?>?
batch,
Wrapped<int?>? status,
Wrapped<bool?>? success,
Wrapped<String?>? msg}) {
return WebApiModulesUtilitiesReceiptProcessBatchReceiptProcessBatchResponse(
batch: (batch != null ? batch.value : this.batch),
status: (status != null ? status.value : this.status),
success: (success != null ? success.value : this.success),
msg: (msg != null ? msg.value : this.msg));
}