ClayAnimatedContainer constructor

const ClayAnimatedContainer({
  1. Key? key,
  2. Widget? child,
  3. double? height,
  4. double? width,
  5. Color? color,
  6. Color? surfaceColor,
  7. Color? parentColor,
  8. double? spread,
  9. double? borderRadius,
  10. BorderRadius? customBorderRadius,
  11. CurveType? curveType,
  12. int? depth,
  13. bool? emboss,
  14. Duration? duration,
  15. Curve? curve,
  16. VoidCallback? onEnd,
})

Implementation

const ClayAnimatedContainer({
  super.key,
  this.child,
  this.height,
  this.width,
  this.color,
  this.surfaceColor,
  this.parentColor,
  this.spread,
  this.borderRadius,
  this.customBorderRadius,
  this.curveType,
  this.depth,
  this.emboss,
  this.duration,
  this.curve,
  this.onEnd,
});