SpinnerIndicator constructor

SpinnerIndicator({
  1. List<String> frames = const ['|', '/', '-', '\\'],
  2. Duration interval = const Duration(milliseconds: 120),
  3. bool active = true,
  4. Color? color,
  5. Style? textStyle,
  6. int startIndex = 0,
  7. Key? key,
})

Implementation

SpinnerIndicator({
  this.frames = const ['|', '/', '-', '\\'],
  this.interval = const Duration(milliseconds: 120),
  this.active = true,
  this.color,
  this.textStyle,
  this.startIndex = 0,
  super.key,
});