Returns the File object associated with this stream.
The File object for this stream.
final output = FileOutputStream('output.bin'); final file = output.file; print('Writing to: ${file.path}');
File get file => _file;