We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b0e5843 commit d559703Copy full SHA for d559703
packages/firebase_vertexai/firebase_vertexai/lib/src/imagen_content.dart
@@ -104,7 +104,7 @@ final class ImagenGenerationResponse<T extends ImagenImage> {
104
/// Factory method to create an [ImagenGenerationResponse] from a JSON object.
105
factory ImagenGenerationResponse.fromJson(Map<String, dynamic> json) {
106
final predictions = json['predictions'];
107
- if (predictions.isEmpty) {
+ if (predictions == null || predictions.isEmpty) {
108
throw ServerException('Got empty prediction with no reason');
109
}
110
0 commit comments