FollyCircular constructor

const FollyCircular({
  1. Key? key,
  2. Color? color,
  3. double size = 16.0,
})

Implementation

const FollyCircular({
  super.key,
  this.color,
  this.size = 16.0,
});