AuthenticationErrorEvent constructor

const AuthenticationErrorEvent({
  1. required String title,
  2. required String message,
  3. Object? error,
})

Implementation

const AuthenticationErrorEvent({
  required this.title,
  required this.message,
  this.error,
});