FastLineGraphAppBarPainter constructor
FastLineGraphAppBarPainter({})
Implementation
FastLineGraphAppBarPainter({
this.backgroundColor = Colors.white,
this.borderColor = Colors.white,
this.cursorColor = Colors.white,
this.backgroundOpacity = 1.0,
this.cursorOpacity = 0.75,
this.borderOpacity = 1.0,
this.cursorRadius = 6.0,
}) {
_backgroundColor = backgroundColor.withOpacity(backgroundOpacity);
_borderColor = borderColor.withOpacity(borderOpacity);
_cursorColor = cursorColor.withOpacity(cursorOpacity);
}