File constructor

File({
  1. String? id,
  2. String? object,
  3. int? created,
  4. String? filename,
  5. Links? links,
  6. String? purpose,
  7. int? size,
  8. String? title,
  9. String? type,
  10. String? url,
})

Implementation

File(
    {this.id,
    this.object,
    this.created,
    this.filename,
    this.links,
    this.purpose,
    this.size,
    this.title,
    this.type,
    this.url});