CodeNestLottieAssetAnimation constructor

const CodeNestLottieAssetAnimation({
  1. Key? key,
  2. required String assetPath,
  3. double? width,
  4. double? height,
  5. BoxFit fit = BoxFit.contain,
  6. bool repeat = true,
  7. bool reverse = false,
  8. bool animate = true,
})

Implementation

const CodeNestLottieAssetAnimation({
  super.key,
  required this.assetPath,
  this.width,
  this.height,
  this.fit = BoxFit.contain,
  this.repeat = true,
  this.reverse = false,
  this.animate = true,
});