ImageGenerationOptions constructor

ImageGenerationOptions({
  1. int? count,
  2. int? imageWidth,
  3. int? imageHeight,
  4. String? mediaType,
  5. String? modelId,
  6. AdditionalPropertiesDictionary? additionalProperties,
})

Creates a new ImageGenerationOptions.

Implementation

ImageGenerationOptions({
  this.count,
  this.imageWidth,
  this.imageHeight,
  this.mediaType,
  this.modelId,
  this.additionalProperties,
});