run method

void run(
  1. Object input,
  2. Object output
)

Run for single input and output

Implementation

void run(Object input, Object output) {
  var map = <int, Object>{};
  map[0] = output;
  runForMultipleInputs([input], map);
}