GameServicesFirebaseAuthException constructor

GameServicesFirebaseAuthException({
  1. required GameServicesFirebaseExceptionCode code,
  2. required String message,
  3. Object? details,
})

Creates a GameServicesFirebaseAuthException with the given code, message, and optional details about the exception.

The code is required and should come from the GameServicesFirebaseExceptionCode enum. The message should provide a clear explanation of the error.

Implementation

GameServicesFirebaseAuthException(
    {required this.code, required this.message, this.details});