SmallGallery constructor

const SmallGallery({
  1. required List<Widget> children,
  2. int crossAxisCount = 4,
})

Create a small gallery in the list.

children: Gallery element. crossAxisCount: The number next to the gallery.

Implementation

const SmallGallery({required this.children, this.crossAxisCount = 4});