BaseAnimationImage constructor

BaseAnimationImage({
  1. Key? key,
  2. required List<String> assetList,
  3. double width = 100,
  4. double height = 100,
  5. required int interval,
})

Implementation

BaseAnimationImage(
    {super.key,
    required this.assetList,
    this.width = 100,
    this.height = 100,
    required this.interval});