decodeOutput method

List decodeOutput(
  1. List<int> encodedOutput
)

Decodes the output of the function from the encoded output bytes.

Implementation

List<dynamic> decodeOutput(List<int> encodedOutput) {
  final abi =
      AbiParameter(name: "", type: "tuple", components: List.from(outputs))
          .decode(encodedOutput);
  return abi.result;
}