GifImage constructor

const GifImage({
  1. Key? key,
  2. required ImageProvider<Object> image,
  3. required SoundEditGifController controller,
  4. required double width,
  5. required double height,
  6. bool excludeFromSemantics = false,
  7. bool matchTextDirection = false,
  8. bool gaplessPlayback = false,
})

Implementation

const GifImage({
  Key? key,
  required this.image,
  required this.controller,
  required this.width,
  required this.height,
  this.excludeFromSemantics = false,
  this.matchTextDirection = false,
  this.gaplessPlayback = false,
}) : super(key: key);