write abstract method

Future<void> write(
  1. String path,
  2. Uint8List data
)

Writes the given bytes to the file at the given path. If the file/path does not exists, it will be created recursively

Implementation

Future<void> write(String path, Uint8List data);