repeatCount method
Repeat animation specific number of times
Implementation
AnimatedWidgetBuilder repeatCount(int count, {bool reverse = false}) {
return _copyWith(config: config.copyWith(
repeat: count > 0,
repeatCount: count,
reverse: reverse,
));
}