AppCircularProgressIndicator constructor

const AppCircularProgressIndicator({
  1. Key? key,
  2. double width = 20,
  3. double height = 20,
  4. Color color = ColorName.purpleMain,
  5. Color backgroundColor = ColorName.gray100,
})

Implementation

const AppCircularProgressIndicator({
  super.key,
  this.width = 20,
  this.height = 20,
  this.color = ColorName.purpleMain,
  this.backgroundColor = ColorName.gray100,
});