Circle constructor

Circle({
  1. Key? key,
  2. bool filled = false,
  3. required CircleUIConfig circleUIConfig,
  4. double extraSize = 0,
})

Implementation

Circle({
  Key? key,
  this.filled = false,
  required this.circleUIConfig,
  this.extraSize = 0,
}) : super(key: key);