FileData constructor

FileData({
  1. String? path,
  2. Uint8List? bytes,
  3. String? extension,
  4. String? url,
  5. String? id,
  6. List<int>? tags,
  7. List<FileData>? children,
})

Implementation

FileData({
  this.path,
  this.bytes,
  this.extension,
  this.url,
  this.id,
  this.tags,
  this.children,
});