Shimmer constructor

const Shimmer({
  1. Key? key,
  2. required LinearGradient linearGradient,
  3. Widget? child,
})

Implementation

const Shimmer({
  Key? key,
  required this.linearGradient,
  this.child,
}) : super(key: key);