writeBytes method

  1. @override
Future<void> writeBytes(
  1. String relativePath,
  2. List<int> bytes
)

Writes bytes to relativePath, creating parents as needed. Throws if the source is read-only.

Implementation

@override
Future<void> writeBytes(String relativePath, List<int> bytes) =>
    _rpc.write(relativePath, bytes);