putRecord method
Write a repository record, creating or updating it as needed. Requires auth, implemented by PDS.
Implementation
Future<XRPCResponse<RepoPutRecordOutput>> putRecord({
required String repo,
required String collection,
required String rkey,
bool? validate,
required Map<String, dynamic> record,
String? swapRecord,
String? swapCommit,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await comAtprotoRepoPutRecord(
repo: repo,
collection: collection,
rkey: rkey,
validate: validate,
record: record,
swapRecord: swapRecord,
swapCommit: swapCommit,
$ctx: _ctx,
$headers: $headers,
$unknown: $unknown,
);