ChatProfileScreen constructor

const ChatProfileScreen({
  1. required ChatService chatService,
  2. required String chatId,
  3. required ChatTranslations translations,
  4. required dynamic onTapUser(
    1. String userId
    ),
  5. String? userId,
  6. Key? key,
})

Implementation

const ChatProfileScreen({
  required this.chatService,
  required this.chatId,
  required this.translations,
  required this.onTapUser,
  this.userId,
  super.key,
});