KAuthError constructor

const KAuthError({
  1. required String code,
  2. required String message,
  3. String? hint,
  4. String? docs,
  5. Map<String, dynamic>? details,
  6. Object? originalError,
})

Implementation

const KAuthError({
  required this.code,
  required this.message,
  this.hint,
  this.docs,
  this.details,
  this.originalError,
});