ChatScreen constructor

const ChatScreen({
  1. required ChatOptions options,
  2. required dynamic onPressStartChat()?,
  3. required void onPressChat(
    1. ChatModel chat
    ),
  4. required void onDeleteChat(
    1. ChatModel chat
    ),
  5. required ChatService service,
  6. TextStyle? unreadMessageTextStyle,
  7. dynamic onNoChats()?,
  8. Future<bool?> deleteChatDialog(
    1. BuildContext,
    2. ChatModel
    )?,
  9. ChatTranslations translations = const ChatTranslations(),
  10. bool disableDismissForPermanentChats = false,
  11. Key? key,
})

Implementation

const ChatScreen({
  required this.options,
  required this.onPressStartChat,
  required this.onPressChat,
  required this.onDeleteChat,
  required this.service,
  this.unreadMessageTextStyle,
  this.onNoChats,
  this.deleteChatDialog,
  this.translations = const ChatTranslations(),
  this.disableDismissForPermanentChats = false,
  super.key,
});