createJoinLink method
NOTE: This is under active development and should be considered unstable while this note is here. Creates a join link for the group convo.
Implementation
Future<XRPCResponse<GroupCreateJoinLinkOutput>> createJoinLink({
required String convoId,
bool? requireApproval,
required JoinRule joinRule,
String? $service,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await chatBskyGroupCreateJoinLink(
convoId: convoId,
requireApproval: requireApproval,
joinRule: joinRule,
$ctx: ctx,
$service: $service,
$headers: $headers,
$unknown: $unknown,
);