Shimmer constructor

const Shimmer({
  1. Key? key,
  2. double? height = 50.0,
  3. double? width = 50.0,
  4. Color? baseColor = const Color(0xFFF0F0F0),
  5. double? cornerRadius = 10.0,
  6. int? animationDuration = 800,
})

Implementation

const Shimmer(
    {super.key,
    this.height = 50.0,
    this.width = 50.0,
    this.baseColor = const Color(0xFFF0F0F0),
    this.cornerRadius = 10.0,
    this.animationDuration = 800});