LoadingIndicator constructor

const LoadingIndicator({
  1. Key? key,
  2. required Indicator indicatorType,
  3. List<Color>? colors,
  4. Color? backgroundColor,
  5. double? strokeWidth,
  6. Color? pathBackgroundColor,
  7. bool pause = false,
})

Implementation

const LoadingIndicator({
  Key? key,
  required this.indicatorType,
  this.colors,
  this.backgroundColor,
  this.strokeWidth,
  this.pathBackgroundColor,
  this.pause = false,
}) : super(key: key);