LogInWithGoogleFailure constructor

const LogInWithGoogleFailure([
  1. String code = 'unknown',
  2. String message = 'An unknown exception occurred.'
])

Thrown during the sign in with google process if a failure occurs. https://pub.dev/documentation/firebase_auth/latest/firebase_auth/FirebaseAuth/signInWithCredential.html

Implementation

const LogInWithGoogleFailure([
  this.code = 'unknown',
  this.message = 'An unknown exception occurred.',
]);