NiceSkeletonCard constructor

const NiceSkeletonCard({
  1. Key? key,
  2. bool hasImage = true,
  3. double imageHeight = 150,
  4. int contentLines = 3,
  5. EdgeInsets? padding,
  6. EdgeInsets? margin,
})

Implementation

const NiceSkeletonCard({
  super.key,
  this.hasImage = true,
  this.imageHeight = 150,
  this.contentLines = 3,
  this.padding,
  this.margin,
});