generateImageBase64FromImage method
Modify an image based on a text prompt
Implementation
Future<List<ImageResponse>> generateImageBase64FromImage({
String? apiKey,
required String engineId,
required ImageToImageRequestParams params,
required Uint8List initImage,
String? organization,
String? clientId,
String? clientVersion,
}) async {
return _generationService.generateImageBase64FromImage(
apiKey: apiKey ?? _apiKey,
engineId: engineId,
params: params,
initImage: initImage,
organization: organization,
clientId: clientId,
clientVersion: clientVersion);
}