requestEmailConfirmation method

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

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

https://atprotodart.com/docs/lexicons/com/atproto/server/requestEmailConfirmation

Implementation

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