SkeletonListItem constructor

const SkeletonListItem({
  1. Key? key,
  2. bool showLeading = true,
  3. double leadingSize = 48,
  4. bool leadingIsCircle = true,
  5. bool showTrailing = false,
  6. int textLines = 2,
  7. EdgeInsetsGeometry? padding,
  8. bool isLoading = true,
})

Implementation

const SkeletonListItem({
  super.key,
  this.showLeading = true,
  this.leadingSize = 48,
  this.leadingIsCircle = true,
  this.showTrailing = false,
  this.textLines = 2,
  this.padding,
  this.isLoading = true,
});