NewGroupChatScreen constructor

const NewGroupChatScreen({
  1. required ChatOptions options,
  2. required dynamic onPressGroupChatOverview(
    1. List<ChatUserModel>
    ),
  3. required ChatService service,
  4. ChatTranslations translations = const ChatTranslations(),
  5. Key? key,
})

Implementation

const NewGroupChatScreen({
  required this.options,
  required this.onPressGroupChatOverview,
  required this.service,
  this.translations = const ChatTranslations(),
  super.key,
});