create method
Implementation
Future<XRPCResponse<RepoCreateRecordOutput>> create({
required bool hideFromAlgorithmicRecommendations,
String rkey = 'self',
bool? validate,
String? swapCommit,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await comAtprotoRepoCreateRecord(
repo: ctx.repo,
collection: ids.appBskyActorContentVisibilityDeclaration,
rkey: rkey,
validate: validate,
record: {
r'$type': 'app.bsky.actor.contentVisibilityDeclaration',
...?$unknown,
'hideFromAlgorithmicRecommendations': hideFromAlgorithmicRecommendations,
},
swapCommit: swapCommit,
$ctx: ctx,
$headers: $headers,
);