File constructor

File({
  1. VideoFileMetadata? videoMetadata,
  2. String name = '',
  3. String displayName = '',
  4. String mimeType = '',
  5. int sizeBytes = 0,
  6. Timestamp? createTime,
  7. Timestamp? updateTime,
  8. Timestamp? expirationTime,
  9. Uint8List? sha256Hash,
  10. String uri = '',
  11. String downloadUri = '',
  12. File_State state = File_State.$default,
  13. File_Source source = File_Source.$default,
  14. Status? error,
})

Implementation

File({
  this.videoMetadata,
  this.name = '',
  this.displayName = '',
  this.mimeType = '',
  this.sizeBytes = 0,
  this.createTime,
  this.updateTime,
  this.expirationTime,
  this.sha256Hash,
  this.uri = '',
  this.downloadUri = '',
  this.state = File_State.$default,
  this.source = File_Source.$default,
  this.error,
}) : super(fullyQualifiedName);