signInByOtp<T extends Auth<AuthKeys>> method

Future<AuthResponse<T>> signInByOtp<T extends Auth<AuthKeys>>(
  1. OtpAuthenticator authenticator, {
  2. bool storeToken = false,
  3. Object? args,
  4. String? id,
  5. bool notifiable = true,
})

Implementation

Future<AuthResponse<T>> signInByOtp<T extends Auth>(
  OtpAuthenticator authenticator, {
  bool storeToken = false,
  Object? args,
  String? id,
  bool notifiable = true,
}) {
  return _i<T>("signInByOtp").signInByOtp(
    authenticator,
    storeToken: storeToken,
    args: args,
    id: id,
    notifiable: notifiable,
  );
}