requestPlcOperationSignature method

Future<XRPCResponse<EmptyData>> requestPlcOperationSignature({
  1. Map<String, String>? $unknown,
  2. Map<String, String>? $headers,
  3. PostClient? $client,
})

Request an email with a code to in order to request a signed PLC operation. Requires Auth.

https://atprotodart.com/docs/lexicons/com/atproto/identity/requestPlcOperationSignature

Implementation

Future<XRPCResponse<EmptyData>> requestPlcOperationSignature({
  Map<String, String>? $unknown,
  Map<String, String>? $headers,
  PostClient? $client,
}) async =>
    await _ctx.post<EmptyData>(
      ns.comAtprotoIdentityRequestPlcOperationSignature,
      headers: $headers,
      client: $client,
    );