PlatformFile constructor

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

Implementation

PlatformFile({
  String? path,
  required this.name,
  required this.size,
  this.bytes,
  this.readStream,
  this.identifier,
}) : _path = path;