NiceSkeletonCard constructor

const NiceSkeletonCard({
  1. Key? key,
  2. double? width,
  3. double height = 200,
  4. bool showImage = true,
  5. bool showTitle = true,
  6. bool showDescription = true,
  7. bool showAvatar = false,
})

Implementation

const NiceSkeletonCard({
  super.key,
  this.width,
  this.height = 200,
  this.showImage = true,
  this.showTitle = true,
  this.showDescription = true,
  this.showAvatar = false,
});