isTypingIndicatorsEnabled property

bool get isTypingIndicatorsEnabled

Whether typing indicators are enabled for the user.

Implementation

bool get isTypingIndicatorsEnabled {
  final typingIndicators = privacySettings?.typingIndicators;
  if (typingIndicators == null) return true;

  return typingIndicators.enabled;
}