DocumentDataFile constructor

DocumentDataFile({
  1. String? content,
  2. String? contentType,
  3. String? name,
})

Returns a new DocumentDataFile instance.

Implementation

DocumentDataFile({
  this.content,
  this.contentType,
  this.name,
});