AuthException constructor

AuthException({
  1. required String message,
  2. String? type = "Error",
  3. String? cause = "Unknown",
})

Implementation

AuthException({
  required this.message,
  this.type = "Error",
  this.cause = "Unknown",
});