IndeterminateLoadingIndicator constructor
const
IndeterminateLoadingIndicator({
- Key? key,
- bool contained = false,
- List<
RoundedPolygon> ? indicatorPolygons, - OutlinedBorder? containerShape,
- Color? containerColor,
- BorderSide? containerOutline,
- Color? activeIndicatorColor,
- BorderSide? activeIndicatorOutline,
- String? semanticsLabel,
- 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",
);