StreamTypingIndicator constructor

const StreamTypingIndicator({
  1. Key? key,
  2. Channel? channel,
  3. Widget? alternativeWidget,
  4. TextStyle? style,
  5. EdgeInsets padding = EdgeInsets.zero,
  6. String? parentId,
})

Shows the list of user who are actively typing.

Implementation

const StreamTypingIndicator({
  super.key,
  this.channel,
  this.alternativeWidget,
  this.style,
  this.padding = EdgeInsets.zero,
  this.parentId,
});