createJoinLink method

Future<XRPCResponse<GroupCreateJoinLinkOutput>> createJoinLink({
  1. required String convoId,
  2. bool? requireApproval,
  3. required JoinRule joinRule,
  4. String? $service,
  5. Map<String, String>? $headers,
  6. Map<String, String>? $unknown,
})

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,
);