copyWith method

Implementation

WebApiModulesAgentOrderKissFlowQuoteOrderSubmissionRequest copyWith({
  String? quoteOrderId,
  String? goToUrl,
}) {
  return WebApiModulesAgentOrderKissFlowQuoteOrderSubmissionRequest(
    quoteOrderId: quoteOrderId ?? this.quoteOrderId,
    goToUrl: goToUrl ?? this.goToUrl,
  );
}