PendingAgentMessage constructor
const
PendingAgentMessage({
- required String messageId,
- required String messageType,
- required String threadPath,
- required String text,
- required List<
AgentFileContent> attachments, - String? senderName,
- DateTime? createdAt,
- bool matchByContentOnly = false,
- bool awaitingAcceptance = false,
- bool awaitingApplication = false,
- bool awaitingOnline = false,
Implementation
const PendingAgentMessage({
required this.messageId,
required this.messageType,
required this.threadPath,
required this.text,
required this.attachments,
this.senderName,
this.createdAt,
this.matchByContentOnly = false,
this.awaitingAcceptance = false,
this.awaitingApplication = false,
this.awaitingOnline = false,
});