MiniSkeleton.circle constructor

const MiniSkeleton.circle({
  1. Key? key,
  2. required double size,
})

Implementation

const MiniSkeleton.circle({
  super.key,
  required double size,
})  : width = size,
      height = size,
      shape = MiniSkeletonShape.circle,
      borderRadius = null;