FastSkeleton constructor
const
FastSkeleton({
- Key? key,
- double height = 50,
- double radius = 10,
- 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,
});