CalibreWeebi<A extends ArticleRawAbstract>.copy constructor
CalibreWeebi<A extends ArticleRawAbstract>.copy (
- CalibreWeebi<
A> other
Implementation
factory CalibreWeebi.copy(CalibreWeebi<A> other) {
return CalibreWeebi<A>(
id: other.id,
status: other.status,
statusUpdateDate: other.statusUpdateDate,
stockUnit: other.stockUnit,
updateDate: other.updateDate,
title: other.title,
articles: other.articles.map((e) => e).toList(),
kind: other.kind,
creationDate: other.creationDate);
}