updateRecordInBulk method
Implementation
Future<XRPCResponse<ApplyWritesOutput>> updateRecordInBulk({
String? repo,
required List<Update> writes,
bool? validate,
String? swapCommit,
Map<String, String>? $headers,
PostClient? $client,
}) async =>
await applyWrites(
repo: repo,
writes: writes.map((e) => UApplyWritesWrite.update(data: e)).toList(),
validate: validate,
swapCommit: swapCommit,
$headers: $headers,
$client: $client,
);