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