AppCircularProgressIndicator constructor

const AppCircularProgressIndicator({
  1. Key? key,
  2. required double progress,
  3. bool showText = false,
  4. bool showPlatter = false,
  5. String loadingText = 'Loading...',
})

Implementation

const AppCircularProgressIndicator({
  super.key,
  required this.progress,
  this.showText = false,
  this.showPlatter = false,
  this.loadingText = 'Loading...',
}) : assert(progress >= 0.0 && progress <= 1.0);