Skeleton.ignore constructor

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

Creates a widget that ignores the child when Skeletonizer.enabled is true

Implementation

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