ConversationsStyle constructor

const ConversationsStyle({
  1. Color? backIconTint,
  2. TextStyle? titleStyle,
  3. double? width,
  4. double? height,
  5. Color? background,
  6. BoxBorder? border,
  7. double? borderRadius,
  8. Gradient? gradient,
  9. TextStyle? emptyTextStyle,
  10. TextStyle? errorTextStyle,
  11. Color? onlineStatusColor,
  12. Color? separatorColor,
  13. Color? loadingIconTint,
  14. TextStyle? lastMessageStyle,
  15. TextStyle? threadIndicatorStyle,
  16. TextStyle? typingIndicatorStyle,
  17. Color? privateGroupIconBackground,
  18. Color? protectedGroupIconBackground,
})

Implementation

const ConversationsStyle(
    {this.backIconTint,
    this.titleStyle,
    super.width,
    super.height,
    super.background,
    super.border,
    super.borderRadius,
    super.gradient,
    this.emptyTextStyle,
    this.errorTextStyle,
    this.onlineStatusColor,
    this.separatorColor,
    this.loadingIconTint,
    this.lastMessageStyle,
    this.threadIndicatorStyle,
    this.typingIndicatorStyle,
    this.privateGroupIconBackground,
    this.protectedGroupIconBackground});