SkeletonWrapper constructor

const SkeletonWrapper({
  1. Key? key,
  2. required bool isLoading,
  3. required Widget child,
  4. Widget? skeleton,
  5. 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(),
});