ShimmerShape constructor

const ShimmerShape({
  1. Key? key,
  2. double? height,
  3. double? width,
  4. EdgeInsetsGeometry? margin,
  5. double? roundRadius,
})

Implementation

const ShimmerShape({
  Key? key,
  this.height,
  this.width,
  this.margin,
  this.roundRadius,
}) : super(key: key);