FilePart constructor

FilePart(
  1. String name,
  2. String filename,
  3. Stream<List<int>> bytes
)

presenting file data and bytes stream

Implementation

FilePart(this.name, this.filename, this.bytes);