sendLoginEmail method
Implementation
Future sendLoginEmail() async {
await _authenticationService.sendSignInEmail(_email);
_navigationService.navigateTo(Routes.emailSent,
arguments: EmailSentPageArguments(email: _email), clearHistory: true);
}