LocalFile constructor

const LocalFile({
  1. required String filename,
  2. required int size,
  3. required Stream<List<int>> stream,
  4. String? path,
  5. String? fid,
})

Implementation

const LocalFile({
  required this.filename,
  required this.size,
  required this.stream,
  this.path,
  this.fid,
});