FullScreenViewer constructor

const FullScreenViewer({
  1. Key? key,
  2. required List<String> images,
  3. required int initialIndex,
})

Implementation

const FullScreenViewer({
  super.key,
  required this.images,
  required this.initialIndex,
});