IndeterminateLoadingIndicator constructor

const IndeterminateLoadingIndicator({
  1. Key? key,
  2. bool contained = false,
  3. List<RoundedPolygon>? indicatorPolygons,
  4. OutlinedBorder? containerShape,
  5. Color? containerColor,
  6. BorderSide? containerOutline,
  7. Color? activeIndicatorColor,
  8. BorderSide? activeIndicatorOutline,
  9. String? semanticsLabel,
  10. LoadingIndicatorForEachPolygon forEachPolygon = LoadingIndicatorHelper.defaultForEachPolygon,
})

Implementation

const IndeterminateLoadingIndicator({
  super.key,
  this.contained = false,
  this.indicatorPolygons,
  this.containerShape,
  this.containerColor,
  this.containerOutline,
  this.activeIndicatorColor,
  this.activeIndicatorOutline,
  this.semanticsLabel,
  this.forEachPolygon = LoadingIndicatorHelper.defaultForEachPolygon,
}) : assert(
       indicatorPolygons == null || indicatorPolygons.length >= 2,
       "indicatorPolygons should have, at least, two RoundedPolygons",
     );