WaveProgress constructor

WaveProgress(
  1. double size,
  2. double progress, {
  3. Color borderColor = Colors.blueAccent,
  4. Color fillColor = Colors.blueAccent,
  5. String? label,
  6. String? subLabel,
})

Implementation

WaveProgress(
  this.size,
  this.progress, {
  this.borderColor = Colors.blueAccent,
  this.fillColor = Colors.blueAccent,
  this.label,
  this.subLabel,
});