GalleryViewWrapper constructor

const GalleryViewWrapper({
  1. Key? key,
  2. required Widget child,
  3. GalleryController? controller,
})

Implementation

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