File constructor
const
File({})
File
This object represents files hosted on Stripe's servers. You can upload files with the [create file](https://stripe.com/docs/api#create\_file) request (for example, when uploading dispute evidence). Stripe also creates files independently (for example, the results of a [Sigma scheduled query](#scheduled_queries)). Related guide: [File upload guide](https://stripe.com/docs/file-upload)
Implementation
const File({
required this.created,
this.expiresAt,
this.filename,
required this.id,
this.links,
required this.purpose,
required this.size,
this.title,
this.type,
this.url,
});