DefaultStyle constructor

DefaultStyle({
  1. Color backgroundColor = Colors.white,
  2. bool animationLoop = false,
  3. Color? progressColor,
})

Implementation

DefaultStyle({
  this.backgroundColor = Colors.white,
  this.animationLoop = false,
  this.progressColor,
});