Skeleton.keep constructor

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

Creates a widget that keeps paints the original child as is when Skeletonizer.enabled is true

Implementation

const factory Skeleton.keep({
  Key? key,
  required Widget child,
  bool keep,
}) = _KeepSkeleton;