StateDocument constructor

StateDocument({
  1. Activity? activity,
  2. Agent? agent,
  3. String? registration,
  4. String? id,
  5. String? etag,
  6. DateTime? timestamp,
  7. String? contentType,
  8. AttachmentContent? content,
})

Implementation

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