ShimmerBox constructor

const ShimmerBox({
  1. Key? key,
  2. double width = double.infinity,
  3. double height = 100,
  4. double borderRadius = 8,
})

Implementation

const ShimmerBox({
  super.key,
  this.width = double.infinity,
  this.height = 100,
  this.borderRadius = 8,
});