Document constructor

Document({
  1. required String id,
  2. List<Principal>? accessControlList,
  3. List<DocumentAttribute>? attributes,
  4. Uint8List? blob,
  5. ContentType? contentType,
  6. S3Path? s3Path,
  7. String? title,
})

Implementation

Document({
  required this.id,
  this.accessControlList,
  this.attributes,
  this.blob,
  this.contentType,
  this.s3Path,
  this.title,
});