ShimmerBox constructor

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

Creates a ShimmerBox.

Implementation

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