CircleShape constructor

CircleShape({
  1. double borderWidth = 0,
  2. Color borderColor = Colors.white,
})

Implementation

CircleShape({
  this.borderWidth = 0,
  this.borderColor = Colors.white,
}) {
  this.borderPaint.isAntiAlias = true;
  this.borderPaint.style = PaintingStyle.stroke;
}