animateWidgetChartLabel method
- Chart Label Overlay
Implementation
Widget animateWidgetChartLabel(
{int delayMs = 0,
int durationMs = 400,
bool repeat = false,
bool animate = true}) {
if (!animate) return this;
return _baseAnimate(
delayMs: delayMs,
repeat: repeat,
)
.fadeIn(duration: durationMs.ms)
.slideY(begin: 0.5, end: 0, curve: Curves.easeOutBack);
}