UIProgressBar.indeterminate constructor

const UIProgressBar.indeterminate({
  1. Key? key,
  2. double minHeight = 6,
  3. Color? backgroundColor,
  4. Color? color,
  5. double borderRadius = 999,
})

Implementation

const UIProgressBar.indeterminate({
  super.key,
  this.minHeight = 6,
  this.backgroundColor,
  this.color,
  this.borderRadius = 999,
}) : value = null;