ChatScreen constructor

const ChatScreen({
  1. Key? key,
  2. required ChatUser user,
  3. required String conversationId,
  4. required String currentUserId,
  5. String? initialMessageId,
})

Implementation

const ChatScreen({
  super.key,
  required this.user,
  required this.conversationId,
  required this.currentUserId,
  this.initialMessageId,
});