JumpingDotsProgressIndicator constructor

const JumpingDotsProgressIndicator({
  1. int numberOfDots = 3,
  2. double fontSize = 10.0,
  3. Color color = Colors.black,
  4. double dotSpacing = 0.0,
  5. int milliseconds = 250,
  6. Key? key,
})

Cria um indicador de progresso de salto.

Implementation

const JumpingDotsProgressIndicator(
    {this.numberOfDots = 3,
    this.fontSize = 10.0,
    this.color = Colors.black,
    this.dotSpacing = 0.0,
    this.milliseconds = 250,
    Key? key})
    : super(key: key);