ChatScreen constructor
const
ChatScreen({ - required ChatOptions options,
- required dynamic onPressStartChat()?,
- required void onPressChat(
- ChatModel chat
),
- required void onDeleteChat(
- ChatModel chat
),
- required ChatService service,
- TextStyle? unreadMessageTextStyle,
- dynamic onNoChats()?,
- Future<bool?> deleteChatDialog(
- BuildContext,
- ChatModel
)?,
- ChatTranslations translations = const ChatTranslations(),
- bool disableDismissForPermanentChats = false,
- 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,
});