parseOutput method

O? parseOutput(
  1. Object? value
)

Parses the output of the call to the outputType and applying outputFilter if needed.

Implementation

O? parseOutput(Object? value) {
  var out = parseExecution(value);
  return mapOutput(out);
}