Circle constructor

const Circle({
  1. String? fillColor,
  2. String? strokeColor,
  3. double width = 40,
  4. double height = 40,
})

Circle API.

Implementation

const Circle({
  this.fillColor,
  this.strokeColor,
  this.width = 40,
  this.height = 40,
});