chatBskyGroupEditGroup function
NOTE: This is under active development and should be considered unstable while this note is here. Edits group settings.
Implementation
Future<XRPCResponse<GroupEditGroupOutput>> chatBskyGroupEditGroup({
required String convoId,
required String name,
required ServiceContext $ctx,
String? $service,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await $ctx.post(
ns.chatBskyGroupEditGroup,
service: $service,
headers: {'Content-type': 'application/json', ...?$headers},
body: {...?$unknown, 'convoId': convoId, 'name': name},
to: const GroupEditGroupOutputConverter().fromJson,
);