FastSkeleton constructor

const FastSkeleton({
  1. Key? key,
  2. double height = 50,
  3. double radius = 10,
  4. EdgeInsetsGeometry padding = EdgeInsets.zero,
})

Creates a widget that shows a skeleton.

const FastSkeleton(
  height: 50,
  radius: 10,
  padding: EdgeInsets.zero,
);

Implementation

const FastSkeleton({
  super.key,
  this.height = 50,
  this.radius = 10,
  this.padding = EdgeInsets.zero,
});