Skeleton constructor

const Skeleton({
  1. required Widget child,
  2. required Widget shape,
  3. Key? key,
  4. bool? skeleton,
})

Implementation

const Skeleton({
  required this.child,
  required this.shape,
  super.key,
  this.skeleton,
});