OrkittProgressIndicator constructor

const OrkittProgressIndicator({
  1. Key? key,
  2. double? value,
  3. Color? color,
  4. Animation<Color?>? valueColor,
  5. Color? trackColor,
  6. Animation<Color?>? trackValueColor,
  7. double? strokeWidth,
  8. double? trackStrokeWidth,
  9. String? semanticsLabel,
  10. String? semanticsValue,
})

Implementation

const OrkittProgressIndicator({
  super.key,
  this.value,
  this.color,
  this.valueColor,
  this.trackColor,
  this.trackValueColor,
  this.strokeWidth,
  this.trackStrokeWidth,
  this.semanticsLabel,
  this.semanticsValue,
})  : assert(strokeWidth == null || strokeWidth > 0),
      assert(trackStrokeWidth == null || trackStrokeWidth > 0);