requestJoin method
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>> requestJoin({
required String code,
String? $service,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await chatBskyGroupRequestJoin(
code: code,
$ctx: ctx,
$service: $service,
$headers: $headers,
$unknown: $unknown,
);