createRecord method
Create a single new repository record. Requires auth, implemented by PDS.
Implementation
Future<XRPCResponse<RepoCreateRecordOutput>> createRecord({
required String repo,
required String collection,
String? rkey,
bool? validate,
required Map<String, dynamic> record,
String? swapCommit,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await comAtprotoRepoCreateRecord(
repo: repo,
collection: collection,
rkey: rkey,
validate: validate,
record: record,
swapCommit: swapCommit,
$ctx: _ctx,
$headers: $headers,
$unknown: $unknown,
);