Writes bytes to path under the served root.
bytes
path
Future<void> write(String path, List<int> bytes) => _call( DriveOp.write, fields: {'path': path}, payload: Uint8List.fromList(bytes), );