ComGallery constructor

const ComGallery({
  1. Key? key,
  2. required List<String> urls,
  3. int initialIndex = 0,
})

Implementation

const ComGallery({
  super.key,
  required this.urls,
  this.initialIndex = 0,
});