AuthenticationErrorState constructor

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

Implementation

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