confirmEmail method
Implementation
Future<core.XRPCResponse<core.EmptyData>> confirmEmail({
required String email,
required String token,
}) async =>
await _ctx.post(
ns.comAtprotoServerConfirmEmail,
body: {
'email': email,
'token': token,
},
);