repeat method

AnimatedWidgetBuilder repeat({
  1. bool reverse = false,
})

Repeat animation

Implementation

AnimatedWidgetBuilder repeat({bool reverse = false}) {
  return _copyWith(config: config.copyWith(repeat: true, reverse: reverse));
}