signInWithOtp method

Future<Response<Credential>> signInWithOtp(
  1. String verId,
  2. String smsCode
)

Signs in the user using a provided credential.

Implementation

Future<Response<Credential>> signInWithOtp(String verId, String smsCode) {
  throw UnimplementedError(
    "Method signInWithSmsCode() is not yet implemented.",
  );
}