signInByEmail<T extends Auth<AuthKeys> > method
Future<AuthResponse<T> >
signInByEmail<T extends Auth<AuthKeys> >(
- EmailAuthenticator authenticator, {
- Object? args,
- String? id,
- bool notifiable = true,
Implementation
Future<AuthResponse<T>> signInByEmail<T extends Auth>(
EmailAuthenticator authenticator, {
Object? args,
String? id,
bool notifiable = true,
}) {
return _i<T>("signInByEmail").signInByEmail(
authenticator,
args: args,
id: id,
notifiable: notifiable,
);
}