AuthFailure constructor

const AuthFailure({
  1. required String reason,
  2. String? message,
  3. Map<String, Object?> details = const {},
  4. List? arguments,
  5. Map<String, Object?>? argumentsKeywords,
})

Implementation

const AuthFailure({
  required this.reason,
  this.message,
  this.details = const {},
  this.arguments,
  this.argumentsKeywords,
});