PlexSkeleton.circle constructor

const PlexSkeleton.circle({
  1. Key? key,
  2. double size = 40,
})

Implementation

const PlexSkeleton.circle({
  super.key,
  double size = 40,
})  : width = size,
      height = size,
      radius = null,
      shape = BoxShape.circle;