CircularProgressLoader constructor

const CircularProgressLoader({
  1. Key? key,
  2. required double progress,
  3. double size = 200,
  4. double lineWidth = 20,
  5. String? text,
})

Implementation

const CircularProgressLoader({
  Key? key,
  required this.progress,
  this.size = 200,
  this.lineWidth = 20,
  this.text,
}) : super(key: key);