TypingIndicatorTheme constructor

const TypingIndicatorTheme({
  1. required Color animatedCirclesColor,
  2. required double animatedCircleSize,
  3. required BorderRadius bubbleBorder,
  4. required Color bubbleColor,
  5. required Color countAvatarColor,
  6. required Color countTextColor,
  7. required TextStyle multipleUserTextStyle,
})

Defaults according to DefaultChatTheme and DarkChatTheme. See ChatTheme.typingIndicatorTheme to customize your own.

Implementation

const TypingIndicatorTheme({
  required this.animatedCirclesColor,
  required this.animatedCircleSize,
  required this.bubbleBorder,
  required this.bubbleColor,
  required this.countAvatarColor,
  required this.countTextColor,
  required this.multipleUserTextStyle,
});