18 lines
303 B
Dart
18 lines
303 B
Dart
import 'dart:io';
|
|
|
|
class ChatMessage {
|
|
final String? text;
|
|
final String? thinkingText;
|
|
final File? image;
|
|
final String? imageBase64;
|
|
final bool isUserMessage;
|
|
|
|
ChatMessage({
|
|
this.text,
|
|
this.thinkingText,
|
|
this.image,
|
|
this.imageBase64,
|
|
required this.isUserMessage,
|
|
});
|
|
}
|