decodeOutput method
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;
}