BaseProgress constructor

const BaseProgress({
  1. Key? key,
  2. double progress = 0,
  3. double? maxWidth,
})

Implementation

const BaseProgress({
  super.key,
  this.progress = 0,
  this.maxWidth,
});