signUpByEmail<T extends Auth<AuthKeys>> method

Future<AuthResponse<T>> signUpByEmail<T extends Auth<AuthKeys>>(
  1. EmailAuthenticator authenticator, {
  2. Object? args,
  3. String? id,
  4. 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);
}