AIAuthError constructor

AIAuthError({
  1. required String provider,
  2. String message = 'Authentication failed — check your API key',
  3. Object? originalError,
})

Implementation

AIAuthError({
  required super.provider,
  super.message = 'Authentication failed — check your API key',
  super.originalError,
});