AuthenticationException constructor

const AuthenticationException({
  1. required String message,
  2. Map<String, dynamic>? details,
})

Implementation

const AuthenticationException({
  required super.message,
  super.details,
}) : super(code: DatumExceptionCode.authenticationError);