GalleryListView constructor

const GalleryListView({
  1. Key? key,
  2. required List<GalleryItem> galleryList,
  3. EdgeInsetsGeometry? padding,
  4. Size? imageSize = const Size(double.infinity, 150),
})

Implementation

const GalleryListView({
  Key? key,
  required this.galleryList,
  this.padding,
  this.imageSize = const Size(double.infinity, 150),
}) : super(key: key);