writeBytes abstract method

Future<Result<void>> writeBytes(
  1. String path,
  2. List<int> bytes, {
  3. bool createParents = false,
})

Writes bytes to path, optionally creating missing parents.

Implementation

Future<Result<void>> writeBytes(
  String path,
  List<int> bytes, {
  bool createParents = false,
});