NewChatScreen constructor

const NewChatScreen({
  1. required ChatOptions options,
  2. required dynamic onPressCreateChat(
    1. ChatUserModel
    ),
  3. required ChatService service,
  4. required dynamic onPressCreateGroupChat(),
  5. ChatTranslations translations = const ChatTranslations(),
  6. Key? key,
})

Implementation

const NewChatScreen({
  required this.options,
  required this.onPressCreateChat,
  required this.service,
  required this.onPressCreateGroupChat,
  this.translations = const ChatTranslations(),
  super.key,
});