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