SkeletonTheme constructor

const SkeletonTheme({
  1. Key? key,
  2. required Widget child,
  3. LinearGradient? shimmerGradient,
  4. LinearGradient? darkShimmerGradient,
  5. ThemeMode? themeMode,
})

Implementation

const SkeletonTheme({
  Key? key,
  required Widget child,
  this.shimmerGradient,
  this.darkShimmerGradient,
  this.themeMode,
}) : super(key: key, child: child);