AnimatedAcrylic constructor

const AnimatedAcrylic({
  1. Key? key,
  2. Color? tint,
  3. Widget? child,
  4. double? tintAlpha,
  5. double? luminosityAlpha,
  6. double? blurAmount,
  7. ShapeBorder? shape,
  8. Color? shadowColor,
  9. double elevation = 0.0,
  10. Curve curve = Curves.linear,
  11. required Duration duration,
})

Implementation

const AnimatedAcrylic({
  super.key,
  this.tint,
  this.child,
  this.tintAlpha,
  this.luminosityAlpha,
  this.blurAmount,
  this.shape,
  this.shadowColor,
  this.elevation = 0.0,
  super.curve,
  required super.duration,
});