UploadedFile constructor

const UploadedFile(
  1. String name,
  2. ContentType contentType,
  3. Stream<List<int>> _byteStream
)

The uploaded file of a form data request.

Implementation

const UploadedFile(
  this.name,
  this.contentType,
  this._byteStream,
);