ProgressAnimation constructor

const ProgressAnimation({
  1. List<String> frames = _defaultFrames,
  2. Duration interval = _defaultInterval,
})

An object which contains configuration for the animation of a Progress instance.

Implementation

const ProgressAnimation({
  this.frames = _defaultFrames,
  this.interval = _defaultInterval,
});