editGroup method

Future<XRPCResponse<GroupEditGroupOutput>> editGroup({
  1. required String convoId,
  2. required String name,
  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. Edits group settings.

Implementation

Future<XRPCResponse<GroupEditGroupOutput>> editGroup({
  required String convoId,
  required String name,
  String? $service,
  Map<String, String>? $headers,
  Map<String, String>? $unknown,
}) async => await chatBskyGroupEditGroup(
  convoId: convoId,
  name: name,
  $ctx: ctx,
  $service: $service,
  $headers: $headers,
  $unknown: $unknown,
);