AIContentFilterError constructor

AIContentFilterError({
  1. required String provider,
  2. String message = 'Content filtered by safety settings',
  3. String? category,
  4. Object? originalError,
})

Implementation

AIContentFilterError({
  required super.provider,
  super.message = 'Content filtered by safety settings',
  this.category,
  super.originalError,
});