AnimatedGradientContainer constructor

const AnimatedGradientContainer({
  1. Key? key,
  2. List<Color>? colors,
  3. Color? textColor,
  4. Color? secondaryColor = Colors.black,
  5. BorderRadius? borderRadius,
  6. required String containerText,
  7. EdgeInsetsGeometry? padding,
  8. void onTap()?,
})

Implementation

const  AnimatedGradientContainer({
    super.key,
    this.colors,
    this.textColor,
    this.secondaryColor=Colors.black,
    this.borderRadius,
    required this.containerText,
    this.padding,
    this.onTap,
  });