GifImage constructor

GifImage({
  1. required ImageProvider<Object> image,
  2. required GifController controller,
  3. String? semanticLabel,
  4. bool excludeFromSemantics = false,
  5. double? width,
  6. double? height,
  7. VoidCallback? onFetchCompleted,
  8. Color? color,
  9. BlendMode? colorBlendMode,
  10. BoxFit? fit,
  11. AlignmentGeometry alignment = Alignment.center,
  12. ImageRepeat repeat = ImageRepeat.noRepeat,
  13. Rect? centerSlice,
  14. bool matchTextDirection = false,
  15. bool gaplessPlayback = false,
})

Implementation

GifImage({
  required this.image,
  required this.controller,
  this.semanticLabel,
  this.excludeFromSemantics = false,
  this.width,
  this.height,
  this.onFetchCompleted,
  this.color,
  this.colorBlendMode,
  this.fit,
  this.alignment = Alignment.center,
  this.repeat = ImageRepeat.noRepeat,
  this.centerSlice,
  this.matchTextDirection = false,
  this.gaplessPlayback = false,
});