FotoGallery constructor

FotoGallery({
  1. Key? key,
  2. required String image,
  3. required List<String> imageList,
  4. required int index,
  5. FilterQuality filterQuality = FilterQuality.low,
  6. ImageFrameBuilder? frameBuilder,
  7. ImageErrorWidgetBuilder? errorWidgetBuilder,
  8. String? semanticLabel,
  9. bool excludeFromSemantics = false,
  10. double? width,
  11. double? height,
  12. Color? color,
  13. Animation<double>? opacity,
  14. BlendMode? blendMode,
  15. BoxFit? fit,
  16. Alignment alignment = Alignment.center,
  17. ImageRepeat imageRepeat = ImageRepeat.noRepeat,
  18. bool matchTextDirection = false,
  19. bool gaplessPlayback = false,
  20. Rect? centerSlice,
  21. bool isAntiAlias = false,
  22. int? cacheHeight,
  23. int? cacheWidth,
  24. Map<String, String>? headers,
  25. ImageLoadingBuilder? loadingBuilder,
  26. double scale = 1.0,
  27. required String imgurl,
})

Implementation

FotoGallery(
    {Key? key,
    required this.image,
    required this.imageList,
    required this.index,
    this.filterQuality = FilterQuality.low,
    this.frameBuilder,
    this.errorWidgetBuilder,
    this.semanticLabel,
    this.excludeFromSemantics = false,
    this.width,
    this.height,
    this.color,
    this.opacity,
    this.blendMode,
    this.fit,
    this.alignment = Alignment.center,
    this.imageRepeat = ImageRepeat.noRepeat,
    this.matchTextDirection = false,
    this.gaplessPlayback = false,
    this.centerSlice,
    this.isAntiAlias = false,
    this.cacheHeight,
    this.cacheWidth,
    this.headers,
    this.loadingBuilder,
    this.scale = 1.0,
    required this.imgurl})
    : super(key: key);