FromOAuthError constructor

FromOAuthError({
  1. required String message,
  2. required String longMessage,
  3. required String code,
  4. Object? meta,
  5. String? clerkTraceId,
})

Returns a new FromOAuthError instance.

Implementation

FromOAuthError({
  required this.message,
  required this.longMessage,
  required this.code,
  this.meta,
  this.clerkTraceId,
});