removeMembers method

Future<XRPCResponse<GroupRemoveMembersOutput>> removeMembers({
  1. required String convoId,
  2. required List<String> members,
  3. String? $service,
  4. Map<String, String>? $headers,
  5. Map<String, String>? $unknown,
})

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,
);