ShapeContainer constructor

const ShapeContainer({
  1. required Animation<double> animation,
  2. required Size containerSize,
  3. required Size textSize,
  4. required EdgeInsetsGeometry padding,
  5. required Color backgroundColor,
  6. required List<Color>? gradientColor,
  7. required Color foregroundColor,
  8. required IconData icon,
  9. required double iconSize,
  10. required double borderRadius,
})

Implementation

const ShapeContainer({
  required this.animation,
  required this.containerSize,
  required this.textSize,
  required this.padding,
  required this.backgroundColor,
  required this.gradientColor,
  required this.foregroundColor,
  required this.icon,
  required this.iconSize,
  required this.borderRadius,
}) : super(listenable: animation);