applyWrites method
Apply a batch transaction of repository creates, updates, and deletes. Requires auth, implemented by PDS.
Implementation
Future<XRPCResponse<RepoApplyWritesOutput>> applyWrites({
required String repo,
bool? validate,
required List<URepoApplyWritesWrites> writes,
String? swapCommit,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await comAtprotoRepoApplyWrites(
repo: repo,
validate: validate,
writes: writes,
swapCommit: swapCommit,
$ctx: _ctx,
$headers: $headers,
$unknown: $unknown,
);