requestPhoneVerification method

Future<XRPCResponse<EmptyData>> requestPhoneVerification({
  1. required String phoneNumber,
})

Implementation

Future<core.XRPCResponse<core.EmptyData>> requestPhoneVerification({
  required String phoneNumber,
}) async =>
    await _ctx.post(
      ns.comAtprotoTempRequestPhoneVerification,
      body: {
        'phoneNumber': phoneNumber,
      },
    );