Spinner constructor

const Spinner({
  1. int frame = 0,
  2. List<String> frames = const ['⠋', '⠙', '⠹', '⠸', '⠼', '⠴', '⠦', '⠧', '⠇', '⠏'],
  3. Style? style,
  4. String? label,
  5. Key? tickerKey,
  6. Duration interval = const Duration(milliseconds: 80),
})

Implementation

const Spinner({
  this.frame = 0,
  this.frames = const ['⠋', '⠙', '⠹', '⠸', '⠼', '⠴', '⠦', '⠧', '⠇', '⠏'],
  this.style,
  this.label,
  this.tickerKey,
  this.interval = const Duration(milliseconds: 80),
});