decodeOutputHex method

List decodeOutputHex(
  1. String encodedOutput
)

Decodes the output of the function from the encoded hexadecimal string output.

Implementation

List<dynamic> decodeOutputHex(String encodedOutput) {
  return decodeOutput(BytesUtils.fromHexString(encodedOutput));
}