ImagesViewerScreen constructor

const ImagesViewerScreen({
  1. Key? key,
  2. required List<String> urls,
  3. required int initialImage,
})

Implementation

const ImagesViewerScreen({
  super.key,
  required this.urls,
  required this.initialImage,
});