DocumentData constructor

DocumentData({
  1. String? container,
  2. DocumentDataFile? file,
  3. DocumentDataPermission? permission,
  4. String? template,
  5. String? type,
})

Returns a new DocumentData instance.

Implementation

DocumentData({
  this.container,
  this.file,
  this.permission,
  this.template,
  this.type,
});