animateWidgetPointPop method
- Data Point Pop
Implementation
Widget animateWidgetPointPop(
{int delayMs = 0,
int durationMs = 500,
bool repeat = false,
bool animate = true}) {
if (!animate) return this;
return _baseAnimate(
delayMs: delayMs,
repeat: repeat,
).scale(
begin: Offset.zero,
end: const Offset(1, 1),
duration: durationMs.ms,
curve: Curves.elasticOut);
}