DownloadableFile constructor

DownloadableFile(
  1. ContentType contentType,
  2. Stream<List<int>> stream,
  3. String filename
)

Implementation

DownloadableFile(this.contentType, this.stream, String filename) {
  contentDisposition = 'attachment; filename="$filename"';
}