rejectJoinRequest method
NOTE: This is under active development and should be considered unstable while this note is here. Rejects a request to join a group (via join link) the user owns. Action taken by the group owner.
Implementation
Future<XRPCResponse<EmptyData>> rejectJoinRequest({
required String convoId,
required String member,
String? $service,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await chatBskyGroupRejectJoinRequest(
convoId: convoId,
member: member,
$ctx: ctx,
$service: $service,
$headers: $headers,
$unknown: $unknown,
);