ImagesPage<T extends Object>.constant constructor
Konstruktor für direkte Bildlisten
Implementation
ImagesPage.constant({
List<ImageData<T>?>? images = const [],
this.columnCount = 4,
Key? key,
this.onNewImages = _defaultAdd,
this.onDelete = _default,
this.onStar = _default,
this.onShare = _default,
this.hasMainImage = false,
this.intendsToAddPicture = false,
}) : super(key: key) {
this._images =
images?.whereNotNull().map((e) => Stream.value(e)).toList() ?? [];
}