Skeleton.sizedBox constructor
Implementation
factory Skeleton.sizedBox({double? width, double? height}) {
return Skeleton(
child: ColoredBox(
color: Colors.white,
child: SizedBox(
width: width,
height: height,
),
),
);
}