Circle constructor

Circle({
  1. bool isEllipse = false,
  2. bool startFromCenter = true,
})

Implementation

Circle({
  this.isEllipse = false,
  this.startFromCenter = true,
});