chatBskyGroupRequestJoin function
NOTE: This is under active development and should be considered unstable while this note is here. Sends a request to join a group (via join link) to the group owner. Action taken by the prospective group member.
Implementation
Future<XRPCResponse<GroupRequestJoinOutput>> chatBskyGroupRequestJoin({
required String code,
required ServiceContext $ctx,
String? $service,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await $ctx.post(
ns.chatBskyGroupRequestJoin,
service: $service,
headers: {'Content-type': 'application/json', ...?$headers},
body: {...?$unknown, 'code': code},
to: const GroupRequestJoinOutputConverter().fromJson,
);