MultipartFileRecreatable constructor

MultipartFileRecreatable(
  1. Stream<List<int>> stream,
  2. int length,
  3. String? filename,
  4. String filePath, {
  5. MediaType? contentType,
})

Implementation

MultipartFileRecreatable(
  Stream<List<int>> stream,
  int length,
  String? filename,
  this.filePath, {
  MediaType? contentType,
}) : super(stream, length, filename: filename, contentType: contentType);