ImagesPage<T extends Object>.futured constructor
Konstruktor für Future-basierte Bildlisten
Implementation
ImagesPage.futured({
List<Future<ImageData<T>?>>? futureImages = 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 =
futureImages?.map((e) => Stream.fromFuture(e)).toList() ?? [];
}