internalReadFile function

Future<Uint8List> internalReadFile(
  1. String filename
)

Internal detail. Fake file reader function that just throws.

Implementation

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