startPhoneVerification method
Starts a phone verification flow. The phone passed will receive a code via SMS that should be passed to app.bsky.contact.verifyPhone. Requires authentication.
Implementation
Future<XRPCResponse<EmptyData>> startPhoneVerification({
required String phone,
String? $service,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await appBskyContactStartPhoneVerification(
phone: phone,
$ctx: ctx,
$service: $service,
$headers: $headers,
$unknown: $unknown,
);