ChatProfileScreen constructor
- required ChatService chatService,
- required String chatId,
- required ChatTranslations translations,
- required dynamic onTapUser(- String userId
 
- String? userId,
- Key? key,
Implementation
const ChatProfileScreen({
  required this.chatService,
  required this.chatId,
  required this.translations,
  required this.onTapUser,
  this.userId,
  super.key,
});