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