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