PlatformFile constructor

const PlatformFile({
  1. required String name,
  2. required int size,
  3. String? path,
  4. Uint8List? bytes,
  5. Stream<List<int>>? readStream,
})

Implementation

const PlatformFile({
  required this.name,
  required this.size,
  this.path,
  this.bytes,
  this.readStream,
});