muteConvo method

Future<XRPCResponse<ConvoMuteConvoOutput>> muteConvo({
  1. required String convoId,
  2. Map<String, String>? $headers,
  3. Map<String, String>? $unknown,
})

Implementation

Future<XRPCResponse<ConvoMuteConvoOutput>> muteConvo({
  required String convoId,
  Map<String, String>? $headers,
  Map<String, String>? $unknown,
}) async => await chatBskyConvoMuteConvo(
  convoId: convoId,
  $ctx: _ctx,
  $headers: $headers,
  $unknown: $unknown,
);