signInByOtp<T extends Auth<AuthKeys> > method
Future<AuthResponse<T> >
signInByOtp<T extends Auth<AuthKeys> >(
- OtpAuthenticator authenticator, {
- bool storeToken = false,
- Object? args,
- String? id,
- 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,
);
}