SignedOutException constructor

const SignedOutException(
  1. String message, {
  2. String? recoverySuggestion,
  3. Object? underlyingException,
})

Exception thrown when the requested operation can't be performed due to the user being signed out.

Implementation

const SignedOutException(
  super.message, {
  super.recoverySuggestion,
  super.underlyingException,
});