create method
Implementation
Future<XRPCResponse<RepoCreateRecordOutput>> create({
required ActorDeclarationAllowIncoming allowIncoming,
String rkey = 'self',
bool? validate,
String? swapCommit,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await comAtprotoRepoCreateRecord(
repo: ctx.repo,
collection: ids.chatBskyActorDeclaration,
rkey: rkey,
validate: validate,
record: {...?$unknown, 'allowIncoming': allowIncoming.toJson()},
swapCommit: swapCommit,
$ctx: ctx,
$headers: $headers,
);