MotionSkeleton.circular constructor

const MotionSkeleton.circular({
  1. Key? key,
  2. required double size,
})

Implementation

const MotionSkeleton.circular({
  super.key,
  required double size,
})  : width = size,
      height = size,
      shape = const CircleBorder();