copyWith method

Implementation

WebApiModulesAgentOrderReserveUnreserveQuoteResponse copyWith({
  int? status,
  bool? success,
  String? msg,
  WebApiModulesAgentQuoteQuote? quote,
}) {
  return WebApiModulesAgentOrderReserveUnreserveQuoteResponse(
    status: status ?? this.status,
    success: success ?? this.success,
    msg: msg ?? this.msg,
    quote: quote ?? this.quote,
  );
}