startPhoneVerification method

Future<XRPCResponse<EmptyData>> startPhoneVerification({
  1. required String phone,
  2. String? $service,
  3. Map<String, String>? $headers,
  4. Map<String, String>? $unknown,
})

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,
);