GameServicesFirebaseAuthException constructor
GameServicesFirebaseAuthException({
- required GameServicesFirebaseExceptionCode code,
- required String message,
- 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});