withdrawJoinRequest method

Future<XRPCResponse<EmptyData>> withdrawJoinRequest({
  1. required String convoId,
  2. String? $service,
  3. Map<String, String>? $headers,
  4. Map<String, String>? $unknown,
})

Withdraws a pending request to join a group. Action taken by the prospective member who originally requested to join.

Implementation

Future<XRPCResponse<EmptyData>> withdrawJoinRequest({
  required String convoId,
  String? $service,
  Map<String, String>? $headers,
  Map<String, String>? $unknown,
}) async => await chatBskyGroupWithdrawJoinRequest(
  convoId: convoId,
  $ctx: ctx,
  $service: $service,
  $headers: $headers,
  $unknown: $unknown,
);