loginSilent method

void loginSilent()

Implementation

void loginSilent() {
  Future.delayed(Duration(milliseconds: 1000), () async {
    try {
      _googleSignIn.signInSilently(suppressErrors: true);
    } on PlatformException {}
  });
}