AgentProfileDocument constructor

AgentProfileDocument({
  1. Agent? agent,
  2. String? id,
  3. String? etag,
  4. DateTime? timestamp,
  5. String? contentType,
  6. AttachmentContent? content,
})

Implementation

AgentProfileDocument({
  this.agent,
  String? id,
  String? etag,
  DateTime? timestamp,
  String? contentType,
  AttachmentContent? content,
}) : super(
          id: id,
          etag: etag,
          timestamp: timestamp,
          contentType: contentType,
          content: content);