putRecord method
Implementation
Future<core.XRPCResponse<StrongRef>> putRecord({
required core.AtUri uri,
required Map<String, dynamic> record,
bool? validate,
String? swapRecordCid,
String? swapCommitCid,
}) async =>
await _ctx.post(
ns.comAtprotoRepoPutRecord,
body: {
'repo': _ctx.session?.did,
'collection': uri.collection.toString(),
'rkey': uri.rkey,
'record': record,
'validate': validate,
'swapRecord': swapRecordCid,
'swapCommit': swapCommitCid
},
to: StrongRef.fromJson,
);