removeMembers method
NOTE: This is under active development and should be considered unstable while this note is here. Removes members from a group. This deletes convo memberships, doesn't just set a status.
Implementation
Future<XRPCResponse<GroupRemoveMembersOutput>> removeMembers({
required String convoId,
required List<String> members,
String? $service,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await chatBskyGroupRemoveMembers(
convoId: convoId,
members: members,
$ctx: ctx,
$service: $service,
$headers: $headers,
$unknown: $unknown,
);