toString method

  1. @override
String toString()
override

Returns a string representation of the exception, which includes the error code, the message, and any additional details provided.

This is useful for logging or debugging when the exception is caught.

Implementation

@override
String toString() {
  return '[GameServiceFirebaseAuthException] $code, msg=$message, details=$details';
}