login method
Implementation
Future<void> login() async {
if (_loading) return;
_loading = true;
if (!await FlutterAuthUi.startUi(
items: _authProviders,
tosAndPrivacyPolicy: _tosAndPrivacyPolicy,
)) {
_loading = false;
notifyListeners();
}
}