excludeSkeleton method

Widget excludeSkeleton({
  1. bool exclude = true,
})

Implementation

Widget excludeSkeleton({bool exclude = true}) {
  return Skeleton.keep(
    keep: exclude,
    child: this,
  );
}