PendingAgentMessage constructor

const PendingAgentMessage({
  1. required String messageId,
  2. required String messageType,
  3. required String threadPath,
  4. required String text,
  5. required List<AgentFileContent> attachments,
  6. String? senderName,
  7. DateTime? createdAt,
  8. bool matchByContentOnly = false,
  9. bool awaitingAcceptance = false,
  10. bool awaitingApplication = false,
  11. 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,
});