signIn abstract method

Future signIn({
  1. bool reAuthenticate = true,
  2. bool suppressErrors = true,
  3. bool silentOnly = false,
})
  • Return access token if sign-in successful,
  • Return empty if sign in failed

Implementation

Future signIn({
  bool reAuthenticate = true,
  bool suppressErrors = true,
  bool silentOnly = false,
});