verifyPhone method
Verifies control over a phone number with a code received via SMS and starts a contact import session. Requires authentication.
Implementation
Future<XRPCResponse<ContactVerifyPhoneOutput>> verifyPhone({
required String phone,
required String code,
String? $service,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await appBskyContactVerifyPhone(
phone: phone,
code: code,
$ctx: ctx,
$service: $service,
$headers: $headers,
$unknown: $unknown,
);