MephistoCircularProgressBar constructor

const MephistoCircularProgressBar({
  1. Key? key,
  2. required double progress,
  3. double? thickness = 10,
  4. Widget? centerContent,
  5. double? height = 80,
})

Implementation

const MephistoCircularProgressBar(
    {Key? key,
    required this.progress,
    this.thickness = 10,
    this.centerContent,
    this.height = 80})
    : super(key: key);