editImage method
Edit an existing image based on a prompt
Creates an edited or extended image given an original image and a prompt. The original image must have transparent areas that indicate where to edit.
Implementation
@override
Future<ImageGenerationResponse> editImage(ImageEditRequest request) async {
return _images.editImage(request);
}