StreamAttachment constructor

StreamAttachment(
  1. Stream<List<int>> _stream,
  2. String contentType, {
  3. String? fileName,
})

Implementation

StreamAttachment(this._stream, String contentType, {String? fileName}) {
  this.contentType = contentType;
  this.fileName = fileName;
}