signInByEmail<T extends Auth<AuthKeys>> method

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