AuthenticationException constructor

const AuthenticationException(
  1. String message, {
  2. String? code = 'P1001',
  3. Object? originalError,
  4. Map<String, dynamic>? context,
  5. String? username,
})

Implementation

const AuthenticationException(
  super.message, {
  super.code = 'P1001',
  super.originalError,
  super.context,
  this.username,
});