copyWith method

Implementation

WebApiModulesAgentOrderChangeOrderOfficeLocationResponse copyWith({
  int? status,
  bool? success,
  String? msg,
  WebApiModulesAgentOrderOrderBase? quoteOrOrder,
}) {
  return WebApiModulesAgentOrderChangeOrderOfficeLocationResponse(
    status: status ?? this.status,
    success: success ?? this.success,
    msg: msg ?? this.msg,
    quoteOrOrder: quoteOrOrder ?? this.quoteOrOrder,
  );
}