AiProviderException constructor

const AiProviderException({
  1. required String providerId,
  2. required String message,
  3. int? statusCode,
  4. String? responseBody,
  5. Object? cause,
})

Implementation

const AiProviderException({
  required this.providerId,
  required this.message,
  this.statusCode,
  this.responseBody,
  this.cause,
});