IsTypingIndicator constructor

const IsTypingIndicator({
  1. Key? key,
  2. double size = 6,
  3. Color? color,
  4. Duration? duration = const Duration(milliseconds: 150),
  5. double spacing = 3,
})

Creates an animated typing indicator.

Implementation

const IsTypingIndicator({
  super.key,
  this.size = 6,
  this.color,
  this.duration = const Duration(milliseconds: 150),
  this.spacing = 3,
});