GalleryPopup constructor

const GalleryPopup({
  1. Key? key,
  2. List<GalleryItem> children = const [],
  3. int initial = 0,
  4. GlobalKey<State<StatefulWidget>>? initialKey,
  5. void onPageChanged(
    1. int
    )?,
  6. void onTrashPressed(
    1. int index
    )?,
  7. bool nextLoading = false,
  8. bool previousLoading = false,
})

Implementation

const GalleryPopup({
  super.key,
  this.children = const [],
  this.initial = 0,
  this.initialKey,
  this.onPageChanged,
  this.onTrashPressed,
  this.nextLoading = false,
  this.previousLoading = false,
});