NewGroupChatOverviewScreen constructor

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

Implementation

const NewGroupChatOverviewScreen({
  required this.options,
  required this.onPressCompleteGroupChatCreation,
  required this.service,
  required this.users,
  this.translations = const ChatTranslations(),
  super.key,
});