FastPieGraphAppBarPainter constructor
FastPieGraphAppBarPainter({})
Implementation
FastPieGraphAppBarPainter({
this.backgroundColor = Colors.white,
this.borderColor = Colors.white,
this.backgroundOpacity = 1.0,
this.borderOpacity = 1.0,
this.borderWidth = 1.0,
}) {
_backgroundColor = backgroundColor.withOpacity(backgroundOpacity);
_borderColor = borderColor.withOpacity(borderOpacity);
_sweepAngle = pi / 2;
}