upscale method

TransformationData upscale(
  1. VertexaiType? type
)

Method for Vertex AI based transformations

Implementation

TransformationData upscale(
  VertexaiType? type,
) {
  var values = <String, String>{};
  if (type != null) {
    values['t'] = type.value;
  }
  return TransformationData(
      plugin: 'vertexAi', name: 'upscale', values: values);
}