copyWith method
WebApiModulesAgentOrderCopyQuoteOrderResponse
copyWith({
- int? status,
- bool? success,
- String? msg,
- WebApiModulesAgentOrderOrderBase? copy,
Implementation
WebApiModulesAgentOrderCopyQuoteOrderResponse copyWith(
{int? status,
bool? success,
String? msg,
WebApiModulesAgentOrderOrderBase? copy}) {
return WebApiModulesAgentOrderCopyQuoteOrderResponse(
status: status ?? this.status,
success: success ?? this.success,
msg: msg ?? this.msg,
copy: copy ?? this.copy);
}