NewChatScreen constructor
- required ChatOptions options,
- required dynamic onPressCreateChat(),
- required ChatService service,
- required dynamic onPressCreateGroupChat(),
- ChatTranslations translations = const ChatTranslations(),
- Key? key,
Implementation
const NewChatScreen({
  required this.options,
  required this.onPressCreateChat,
  required this.service,
  required this.onPressCreateGroupChat,
  this.translations = const ChatTranslations(),
  super.key,
});