ContentStream property

Stream<List<int>>? ContentStream
Gets or sets the content stream.

Implementation

Stream<List<int>>? get ContentStream =>
    this._contentStream as Stream<List<int>>?;
void ContentStream=(Stream<List<int>>? value)

Implementation

set ContentStream(Stream<List<int>>? value) {
  this.ThrowIfThisIsNotNew();

  this._contentStream = value;
  this._content = null;
  this._fileName = null;
}