ContainerAnimation constructor

const ContainerAnimation({
  1. Key? key,
  2. Color? color1,
  3. Color? color2,
  4. EdgeInsets? margin,
  5. BorderRadius? borderRadius,
  6. Icon? icon,
  7. required List<ItemData> itemList,
  8. TextStyle? titleTextStyle,
  9. TextStyle? subtitleTextStyle,
  10. int? animationDuration,
})

Implementation

const ContainerAnimation(
    {super.key,
    this.color1,
    this.color2,
    this.margin,
    this.borderRadius,
    this.icon,
    required this.itemList,
    this.titleTextStyle,
    this.subtitleTextStyle,
    this.animationDuration});