copyWith method
Implementation
WebApiModulesAgentOrderDuplicateOrderItemsResponse copyWith({
int? status,
bool? success,
String? msg,
List<String>? orderItemIds,
}) {
return WebApiModulesAgentOrderDuplicateOrderItemsResponse(
status: status ?? this.status,
success: success ?? this.success,
msg: msg ?? this.msg,
orderItemIds: orderItemIds ?? this.orderItemIds,
);
}