AIAttachment constructor
Implementation
AIAttachment({
required this.type,
this.bytes,
this.url,
this.filePath,
this.mimeType,
this.name,
}) : assert(
bytes != null || url != null || filePath != null,
'At least one of bytes, url, or filePath must be provided.',
);