GalleryViewWrapper constructor

const GalleryViewWrapper({
  1. Key? key,
  2. required Widget child,
  3. required GalleryController controller,
  4. bool safeAreaBottom = false,
})

Implementation

const GalleryViewWrapper({
  Key? key,
  required this.child,
  required this.controller,
  this.safeAreaBottom = false,
}) : super(key: key);