Documentation constructor

Documentation({
  1. String? content,
  2. List<Link>? links,
  3. String? mimeType,
  4. String? subject,
})

Implementation

Documentation({
  this.content,
  this.links,
  this.mimeType,
  this.subject,
});