writeFile function

Future<bool> writeFile(
  1. String path,
  2. Uint8List bytes
)

Implementation

Future<bool> writeFile(String path, Uint8List bytes) async =>
    throw UnsupportedError('File access is only supported by dart:io');