ImagePreview constructor

const ImagePreview({
  1. Key? key,
  2. required List<String> imageList,
  3. required int index,
  4. String? title,
  5. Color? titleColor = Colors.black,
  6. bool isAppBarShow = true,
  7. Color? appBarColor,
})

Implementation

const ImagePreview({Key? key, required this.imageList, required this.index, this.title, this.titleColor = Colors.black, this.isAppBarShow = true, this.appBarColor})
    : super(key: key);