SkeletonCard constructor

const SkeletonCard({
  1. Key? key,
  2. bool showAvatar = true,
  3. double avatarSize = 40,
  4. int textLines = 2,
  5. bool showImage = false,
  6. double imageHeight = 120,
  7. double borderRadius = 16,
  8. EdgeInsetsGeometry? padding,
  9. bool isLoading = true,
})

Implementation

const SkeletonCard({
  super.key,
  this.showAvatar = true,
  this.avatarSize = 40,
  this.textLines = 2,
  this.showImage = false,
  this.imageHeight = 120,
  this.borderRadius = 16,
  this.padding,
  this.isLoading = true,
});