DocumentFile constructor

DocumentFile({
  1. DocumentFileContentTypeEnum? contentType,
  2. String? name,
})

Returns a new DocumentFile instance.

Implementation

DocumentFile({
  this.contentType,
  this.name,
});