BubbleTypingIndicator constructor

const BubbleTypingIndicator({
  1. Key? key,
  2. Color? color,
  3. double bubbleSize = 8.0,
  4. double spacing = 4.0,
  5. Duration animationDuration = const Duration(milliseconds: 1500),
  6. int bubbleCount = 3,
})

Implementation

const BubbleTypingIndicator({
  super.key,
  this.color,
  this.bubbleSize = 8.0,
  this.spacing = 4.0,
  this.animationDuration = const Duration(milliseconds: 1500),
  this.bubbleCount = 3,
});