copyWith method

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);
}