ImageSequenceAnimator constructor

const ImageSequenceAnimator(
  1. String folderName,
  2. String fileName,
  3. int suffixStart,
  4. int suffixCount,
  5. String fileFormat,
  6. double frameCount, {
  7. Key? key,
  8. List<String>? fullPaths,
  9. double fps = 60,
  10. bool isLooping = false,
  11. bool isBoomerang = false,
  12. bool isAutoPlay = true,
  13. Color? color,
  14. bool isOnline = false,
  15. bool waitUntilCacheIsComplete = false,
  16. CacheProgressIndicatorBuilder? cacheProgressIndicatorBuilder,
  17. ImageSequenceProcessCallback? onReadyToPlay,
  18. ImageSequenceProcessCallback? onStartPlaying,
  19. ImageSequenceProcessCallback? onPlaying,
  20. ImageSequenceProcessCallback? onFinishPlaying,
})

Implementation

const ImageSequenceAnimator(
  this.folderName,
  this.fileName,
  this.suffixStart,
  this.suffixCount,
  this.fileFormat,
  this.frameCount, {
  Key? key,
  this.fullPaths,
  this.fps: 60,
  this.isLooping: false,
  this.isBoomerang: false,
  this.isAutoPlay: true,
  this.color,
  this.isOnline: false,
  this.waitUntilCacheIsComplete: false,
  this.cacheProgressIndicatorBuilder,
  this.onReadyToPlay,
  this.onStartPlaying,
  this.onPlaying,
  this.onFinishPlaying,
}) : super(key: key);