AiApiException constructor

const AiApiException({
  1. required AiApiErrorType type,
  2. required String message,
  3. int? statusCode,
})

Implementation

const AiApiException({
  required this.type,
  required this.message,
  this.statusCode,
});