public async void login() { bool result = await FirebaseAuthHelper.Login(User); if (result) { AuthenticationSucessfull?.Invoke(this, new EventArgs()); } }
public async Task Login() { bool result = await FirebaseAuthHelper.Login(User); if (result) { Authenticated?.Invoke(this, new EventArgs()); } }