verifyOtp method

Future<CkAuthResult<void>> verifyOtp({
  1. required String otp,
})

Verify OTP — uses stored verification token automatically.

Implementation

Future<CkAuthResult<void>> verifyOtp({required String otp}) =>
    CkAuthService.instance.verifyOtp(otp: otp);