withSkeleton method
Converts this widget to a skeleton version.
Example:
Text("Hello").withSkeleton()
Implementation
Widget withSkeleton({
SkeletonConfig? config,
double? widthFactor,
double? heightFactor,
}) {
return Skeleton.from(this, config: config);
}