WaveProgress constructor
WaveProgress({})
Implementation
WaveProgress({
this.borderSize = 10,
required this.size,
required this.borderColor,
required this.foregroundWaveColor,
this.backgroundWaveColor,
required this.progress,
this.innerPadding = 0,
}) {
if (backgroundWaveColor == null) {
backgroundWaveColor = foregroundWaveColor.withOpacity(0.5);
}
}