upscale method
Method for Vertex AI based transformations
type
: VertexaiType (Default: x2) Returns TransformationData.
Implementation
TransformationData upscale(
VertexaiType? type,
) {
var values = <String, String>{};
if (type != null) {
values['t'] = type.value;
}
return TransformationData(
plugin: 'vertexAi', name: 'upscale', values: values);
}