TypingIndicator constructor

const TypingIndicator({
  1. Key? key,
  2. required bool showIndicator,
})

Creates a typing indicator.

Implementation

const TypingIndicator({
  super.key,
  required this.showIndicator,
});