MultipartPart constructor
MultipartPart({})
Wraps one streaming part.
Implementation
MultipartPart({
required this.name,
required Stream<List<int>> content,
this.filename,
this.contentType,
}) : _content = content;
Wraps one streaming part.
MultipartPart({
required this.name,
required Stream<List<int>> content,
this.filename,
this.contentType,
}) : _content = content;