Skeleton.roundedBox constructor
Implementation
factory Skeleton.roundedBox({
double? width,
double? height,
double? round,
}) {
return Skeleton(
child: Container(
decoration: BoxDecoration(
color: Colors.white,
borderRadius: BorderRadius.circular(round ?? 6),
),
width: width,
height: height,
),
);
}