🐛 Bug fixes for the AI thought
This commit is contained in:
@@ -38,3 +38,16 @@ class ShowComposeSheetEvent {
|
||||
class ShowNotificationSheetEvent {
|
||||
const ShowNotificationSheetEvent();
|
||||
}
|
||||
|
||||
/// Event fired to show the thought sheet
|
||||
class ShowThoughtSheetEvent {
|
||||
final String? initialMessage;
|
||||
final List<Map<String, dynamic>> attachedMessages;
|
||||
final List<String> attachedPosts;
|
||||
|
||||
const ShowThoughtSheetEvent({
|
||||
this.initialMessage,
|
||||
this.attachedMessages = const [],
|
||||
this.attachedPosts = const [],
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user