ShimmerList constructor

const ShimmerList({
  1. Key? key,
  2. int itemCount = 5,
  3. double height = 100,
  4. double width = double.infinity,
  5. EdgeInsetsGeometry padding = const EdgeInsets.all(8.0),
})

Implementation

const ShimmerList({
  super.key,
  this.itemCount = 5,
  this.height = 100,
  this.width = double.infinity,
  this.padding = const EdgeInsets.all(8.0),
});