AdaptiveShimmer constructor

AdaptiveShimmer({
  1. Key? key,
  2. required Widget child,
  3. required bool loading,
  4. bool? isEnabled,
  5. Duration? period,
  6. ShimmerDirection? direction,
  7. int? loop,
  8. Color? baseColor,
  9. Color? highlightColor,
})

Implementation

AdaptiveShimmer(
    {super.key, required this.child,
      required this.loading,
      this.isEnabled,
      this.period,
      this.direction,
      this.loop,
      this.baseColor,
      this.highlightColor});