activateAccount method

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

Activates a currently deactivated account. Used to finalize account migration after the account's repo is imported and identity is setup.

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

Implementation

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