copyWith method
WebApiModulesAgentOrderQuoteNewVersionResponse
copyWith({
- int? status,
- bool? success,
- String? msg,
- WebApiModulesAgentQuoteQuote? newVersion,
Implementation
WebApiModulesAgentOrderQuoteNewVersionResponse copyWith(
{int? status,
bool? success,
String? msg,
WebApiModulesAgentQuoteQuote? newVersion}) {
return WebApiModulesAgentOrderQuoteNewVersionResponse(
status: status ?? this.status,
success: success ?? this.success,
msg: msg ?? this.msg,
newVersion: newVersion ?? this.newVersion);
}