BucketFile constructor
BucketFile({})
Creates a new BucketFile instance.
Parameters
id: The unique file identifierkey: The file key/path within the bucketdescription: Optional file descriptiontags: Optional list of tagsbucketId: ID of the containing buckettype: Optional MIME typesize: File size in bytescreatedAt: Creation timestamp
Implementation
BucketFile({
required this.id,
required this.key,
this.description,
this.tags,
required this.bucketId,
this.type,
required this.size,
required this.createdAt,
});