copyWith method
Implementation
AiClassificationResponse copyWith({
String? imageClassification,
String? textClassification,
bool? isSensitive,
}) {
return AiClassificationResponse(
imageClassification: imageClassification ?? this.imageClassification,
textClassification: textClassification ?? this.textClassification,
isSensitive: isSensitive ?? this.isSensitive,
);
}