generateSignInWithEmailLink method
Generates the out of band email action link for email link sign-in flows for the email specified using the action code settings provided.
Implementation
Future<String> generateSignInWithEmailLink(
String email, ActionCodeSettings? actionCodeSettings) {
return _authRequestHandler
.getEmailActionLink('EMAIL_SIGNIN', email,
actionCodeSettings: actionCodeSettings)
.then((value) => value);
}