comAtprotoServerRequestEmailConfirmation function

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

Request an email with a code to confirm ownership of email.

Implementation

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