internalWriteFile function

Future<void> internalWriteFile(
  1. String filename,
  2. Uint8List bytes
)

Internal detail. Fake file writer function that just throws.

Implementation

Future<void> internalWriteFile(String filename, Uint8List bytes) {
  throw UnsupportedError('File IO is not available on this platform.');
}