Document constructor

Document({
  1. String? content,
  2. int? contentLengthBytes,
  3. String? dataSource,
  4. String? description,
  5. String? name,
  6. String? title,
  7. String? updateTime,
  8. String? uri,
  9. String? view,
})

Implementation

Document({
  this.content,
  this.contentLengthBytes,
  this.dataSource,
  this.description,
  this.name,
  this.title,
  this.updateTime,
  this.uri,
  this.view,
});