ShimmerWidget constructor

const ShimmerWidget({
  1. Key? key,
  2. LinearGradient? shimmerGradient,
  3. LinearGradient? darkShimmerGradient,
  4. ThemeMode? themeMode,
  5. Duration? duration,
  6. Widget? child,
})

Implementation

const ShimmerWidget({
  Key? key,
  this.shimmerGradient,
  this.darkShimmerGradient,
  this.themeMode,
  this.duration,
  this.child,
}) : super(key: key);