ProcessView constructor

const ProcessView({
  1. Key? key,
  2. required double size,
  3. required bool starLoading,
  4. required double percent,
  5. required bool starComplete,
  6. bool showStar = true,
})

Implementation

const ProcessView(
    {super.key,
    required this.size,
    required this.starLoading,
    required this.percent,
    required this.starComplete,
    this.showStar = true});