getResult method

String getResult()

return results of all operations encoded using the default encoding - HEX. The same as toString(). If no operation is executed the result will be an empty string.

Implementation

String getResult() {
  try {
    return HEX.encode(resultBytes);
  } on Exception catch (e) {
    exception = e;
    error = true;
  }
  return "";
}