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