AIMessage constructor
Implementation
AIMessage({
required this.role,
required this.content,
this.attachments,
this.metadata,
this.toolCalls,
this.toolCallId,
DateTime? timestamp,
String? id,
}) : timestamp = timestamp ?? DateTime.now(),
id = id ?? _generateId();