activateAccount method

Future<XRPCResponse<EmptyData>> activateAccount({
  1. String? $service,
  2. Map<String, String>? $headers,
})

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

Implementation

Future<XRPCResponse<EmptyData>> activateAccount({
  String? $service,
  Map<String, String>? $headers,
}) async => await comAtprotoServerActivateAccount(
  $ctx: ctx,
  $service: $service,
  $headers: $headers,
);