MProgressBar constructor

const MProgressBar({
  1. required Object value,
  2. double max = 100.0,
  3. MColor color = const MColor.hex("#4444FF"),
})

Implementation

const MProgressBar({
  required this.value,
  this.max = 100.0,
  this.color = const MColor.hex("#4444FF"),
});