Circle constructor

Circle({
  1. Key? key,
  2. required Color color,
  3. required double size,
})

color Determine the color of this circle. size Determine the circumference.

Implementation

Circle({Key? key, required this.color, required this.size}) : super(key: key);