TypingIndicator constructor

const TypingIndicator({
  1. Key? key,
  2. Channel? channel,
  3. Widget? alternativeWidget,
  4. TextStyle? style,
  5. Alignment alignment = Alignment.centerLeft,
  6. EdgeInsets padding = const EdgeInsets.all(0),
  7. String? parentId,
})

Instantiate a new TypingIndicator

Implementation

const TypingIndicator({
  Key? key,
  this.channel,
  this.alternativeWidget,
  this.style,
  this.alignment = Alignment.centerLeft,
  this.padding = const EdgeInsets.all(0),
  this.parentId,
}) : super(key: key);