AuiSkeleton.circle constructor
Creates a circular skeleton suitable for avatar placeholders.
The size parameter controls both width and height, and the
borderRadius is automatically set to a perfect circle.
Implementation
AuiSkeleton.circle({
super.key,
double size = 40,
this.baseColor,
this.highlightColor,
}) : width = size,
height = size,
borderRadius = BorderRadius.circular(size / 2);