write method
Validate path, apply the prefix, write bytes at the scoped key.
Implementation
Future<void> write(
String path,
Uint8List bytes, [
WriteOptions options = const WriteOptions(),
]) {
validateKey(path);
return _backend.write(key(path), bytes, options);
}