animateWidgetTypingDots method
- Typing Dots Animation
Implementation
Widget animateWidgetTypingDots(
{int delayMs = 0,
int durationMs = 300,
bool repeat = true,
bool animate = true}) {
if (!animate) return this;
return _baseAnimate(
delayMs: delayMs,
repeat: repeat,
reverse: true,
).scaleXY(
begin: 0.8, end: 1.2, duration: durationMs.ms, curve: Curves.easeInOut);
}