LoadingIndicator constructor

LoadingIndicator({
  1. Key? key,
  2. required Indicator indicatorType,
  3. Color? color,
  4. List<Color>? colors,
})

Implementation

LoadingIndicator({
  Key? key,
  required this.indicatorType,
  this.color,
  this.colors,
}) : super(key: key);