SkeletonWrapper constructor
const
SkeletonWrapper({
- Key? key,
- required bool isLoading,
- required Widget child,
- Widget? skeleton,
- SkeletonConfig config = const SkeletonConfig(),
Creates a skeleton wrapper.
Implementation
const SkeletonWrapper({
super.key,
required this.isLoading,
required this.child,
this.skeleton,
this.config = const SkeletonConfig(),
});