comAtprotoIdentityRequestPlcOperationSignature function

Future<XRPCResponse<EmptyData>> comAtprotoIdentityRequestPlcOperationSignature({
  1. required ServiceContext $ctx,
  2. String? $service,
  3. Map<String, String>? $headers,
})

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

Implementation

Future<XRPCResponse<EmptyData>> comAtprotoIdentityRequestPlcOperationSignature({
  required ServiceContext $ctx,
  String? $service,
  Map<String, String>? $headers,
}) async => await $ctx.post(
  ns.comAtprotoIdentityRequestPlcOperationSignature,
  service: $service,
  headers: {...?$headers},
);