ProgressMeter constructor

const ProgressMeter({
  1. Key? key,
  2. double? begin = 0.0,
  3. double? end = 2,
  4. int? duration = 2,
  5. Color? color = Colors.blue,
  6. String? levelText = "",
})

Implementation

const ProgressMeter(
    {Key? key,
    this.begin = 0.0,
    this.end = 2,
    this.duration = 2,
    this.color = Colors.blue,
    this.levelText = ""})
    : super(key: key);