AuthException
class
class AuthException implements Exception {
final String message;
final Map<String, String> data;
AuthException(this.message, this.data);
toString() => "AuthException: $message";
}
Implements
Exception
Constructors
Creates a new Object instance.
Object instances have no meaningful state, and are only useful
through their identity. An Object instance is equal to itself
only.
AuthException(this.message, this.data);
Properties
final Map<String, String> data
Methods
dynamic toString() #
Returns a string representation of this object.
toString() => "AuthException: $message";