ChatView constructor

const ChatView({
  1. Key? key,
  2. required String jid,
  3. bool isUser = false,
  4. String? messageId,
  5. bool isFromStarred = false,
  6. bool enableAppBar = true,
  7. bool enableCalls = false,
  8. bool showChatDeliveryIndicator = true,
})

Implementation

const ChatView(
    {super.key,
    required this.jid,
    this.isUser = false,
    this.messageId,
    this.isFromStarred = false,
    this.enableAppBar = true,
    this.enableCalls = false,
    this.showChatDeliveryIndicator = true});